diff options
Diffstat (limited to '.config/rofi')
-rw-r--r-- | .config/rofi/config.rasi | 156 | ||||
-rw-r--r-- | .config/rofi/gruvbox.rasi | 55 |
2 files changed, 0 insertions, 211 deletions
diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi deleted file mode 100644 index b9deba7..0000000 --- a/.config/rofi/config.rasi +++ /dev/null @@ -1,156 +0,0 @@ -@theme "gruvbox" - -configuration { - modi: "drun,run"; - font: "JetBrainsMono Nerd Font bold 20px"; - show-icons: false; - terminal: "kitty"; - drun-display-format: "{name}"; - location: 0; - disable-history: false; - sidebar-mode: true; - display-drun: "Apps"; - display-run: "Command"; - display-window: "Window"; -} - -window { - background-color: @background; - border: 6; - border-radius: 14px; - padding: 4; - fullscreen: false; - width: 750; - height: 520; -} - -mainbox { - border: 0; - padding: 0; -} - -message { - border: 0 0 0; - border-color: @separatorcolor; - padding: 1px; -} - -textbox { - highlight: @highlight; - text-color: @foreground; -} - -listview { - border: 0 0 0; - padding: 10px -5px 10px 5px; - border-color: @separatorcolor; - spacing: 10px; - scrollbar: @scrollbar; -} - -element { - padding: 5px 10px; - border-radius: 5px; - margin: 0 5px 0 5px; -} - -element.normal.normal { - background-color: @normal-background; - text-color: @normal-foreground; -} - -element.normal.urgent { - background-color: @urgent-background; - text-color: @urgent-foreground; -} - -element.normal.active { - background-color: @active-background; - text-color: @active-foreground; -} - -element.selected.normal { - background-color: @selected-normal-background; - text-color: @selected-normal-foreground; -} - -element.selected.urgent { - background-color: @selected-urgent-background; - text-color: @selected-urgent-foreground; -} - -element.selected.active { - background-color: @selected-active-background; - text-color: @selected-active-foreground; -} - -element.alternate.normal { - background-color: @alternate-normal-background; - text-color: @alternate-normal-foreground; -} - -element.alternate.urgent { - background-color: @alternate-urgent-background; - text-color: @alternate-urgent-foreground; -} - -element.alternate.active { - background-color: @alternate-active-background; - text-color: @alternate-active-foreground; -} - -scrollbar { - enabled: false; - width: 0; - border: 0; - handle-color: @scrollbar-handle; - handle-width: 0; - padding: 0; - margin: 0; -} - -mode-switcher { - border: 0 0 0; - border-color: @separatorcolor; - margin: 5px; -} - -inputbar { - spacing: 0; - text-color: @normal-foreground; - padding: 2px; - children: [ prompt, entry, case-indicator ]; -} - -case-indicator, -entry, -prompt, -button { - spacing: 5px; - text-color: @normal-foreground; - border-radius: 5px; - padding: 10px 20px; - margin: 0px; -} - -prompt { - background-color: @prompt-background; - text-color: @prompt-foreground; - border-radius: 5px; -} - -button.selected { - background-color: @selected-normal-background; - text-color: @selected-normal-foreground; -} - -textbox-prompt-sep { - expand: false; - str: ">>"; - text-color: @normal-foreground; - margin: 10px 0 0 0; -} -element-text, element-icon { - background-color: inherit; - text-color: inherit; -} diff --git a/.config/rofi/gruvbox.rasi b/.config/rofi/gruvbox.rasi deleted file mode 100644 index b2d538b..0000000 --- a/.config/rofi/gruvbox.rasi +++ /dev/null @@ -1,55 +0,0 @@ -* { - highlight: bold italic; - scrollbar: true; - - /* gruv = Gruvbox Dark */ - gruv-bg-dim: #282828; - gruv-bg0: #3c3836; - gruv-bg1: #504945; - gruv-bg2: #665c54; - gruv-bg3: #7c6f64; - gruv-bg4: #928374; - gruv-bg5: #a89984; - gruv-red: #fb4934; - gruv-orange: #fe8019; - gruv-yellow: #fabd2f; - gruv-green: #b8bb26; - gruv-blue: #83a598; - gruv-aqua: #8ec07c; - gruv-purple: #d3869b; - gruv-fg: #ebdbb2; - gruv-gray0: #665c54; - gruv-gray1: #7c6f64; - gruv-gray2: #928374; - - background: @gruv-bg-dim; - background-color: @background; - foreground: @gruv-fg; - border-color: @gruv-blue; - separatorcolor: @border-color; - scrollbar-handle: @border-color; - - normal-background: @gruv-bg0; - normal-foreground: @foreground; - alternate-normal-background: @gruv-bg1; - alternate-normal-foreground: @foreground; - selected-normal-background: @gruv-blue; - selected-normal-foreground: @background; - - active-background: @gruv-blue; - active-foreground: @background; - alternate-active-background: @active-background; - alternate-active-foreground: @active-foreground; - selected-active-background: @active-background; - selected-active-foreground: @active-foreground; - - urgent-background: @gruv-red; - urgent-foreground: @background; - alternate-urgent-background: @urgent-background; - alternate-urgent-foreground: @urgent-foreground; - selected-urgent-background: @urgent-background; - selected-urgent-foreground: @urgent-foreground; - - prompt-background: @gruv-blue; - prompt-foreground: @background; -} |