diff options
| -rw-r--r-- | rofi/config.rasi | 21 | ||||
| -rw-r--r-- | rofi/theme.rasi | 105 | ||||
| -rw-r--r-- | wallust/templates/colors_rofi.rasi | 35 | ||||
| -rw-r--r-- | wallust/templates/dunstrc | 8 |
4 files changed, 41 insertions, 128 deletions
diff --git a/rofi/config.rasi b/rofi/config.rasi index 80a7b9c..ba7ac15 100644 --- a/rofi/config.rasi +++ b/rofi/config.rasi @@ -1,17 +1,16 @@ configuration{ - modi: "run,drun"; + modes: "drun,window"; icon-theme: "Papirus"; show-icons: true; - terminal: "kitty"; - drun-display-format: "{icon} {name}"; - location: 0; - disable-history: false; - hide-scrollbar: true; - display-drun: " Apps "; - display-run: " Run "; - display-window: " Window "; - display-Network: " Network "; sidebar-mode: false; } -@theme "theme" +@import "colors" + +* { + font: "Lilex Nerd Font 14"; +} + +scrollbar { + handle-color: @accent; +} diff --git a/rofi/theme.rasi b/rofi/theme.rasi deleted file mode 100644 index d8ef494..0000000 --- a/rofi/theme.rasi +++ /dev/null @@ -1,105 +0,0 @@ -@theme "colors" - -* { - width: 600; - font: "Lilex Nerd Font 14"; -} - -element-text, element-icon , mode-switcher { - background-color: inherit; - text-color: inherit; -} - -window { - height: 360px; - border: 3px; - border-color: @border-col; - background-color: @bg-col; -} - -mainbox { - background-color: @bg-col; -} - -inputbar { - children: [prompt,entry]; - background-color: @bg-col; - border-radius: 5px; - padding: 2px; -} - -prompt { - background-color: @blue; - padding: 6px; - text-color: @bg-col; - border-radius: 3px; - margin: 20px 0px 0px 20px; -} - -textbox-prompt-colon { - expand: false; - str: ":"; -} - -entry { - padding: 6px; - margin: 20px 0px 0px 10px; - text-color: @fg-col; - background-color: @bg-col; -} - -listview { - border: 0px 0px 0px; - padding: 6px 0px 0px; - margin: 10px 0px 0px 20px; - columns: 2; - lines: 5; - background-color: @bg-col; -} - -element { - padding: 5px; - background-color: @bg-col; - text-color: @fg-col ; -} - -element-icon { - size: 25px; -} - -element selected { - background-color: @selected-col ; - text-color: @fg-col2 ; -} - -mode-switcher { - spacing: 0; - } - -button { - padding: 10px; - background-color: @bg-col-light; - text-color: @grey; - vertical-align: 0.5; - horizontal-align: 0.5; -} - -button selected { - background-color: @bg-col; - text-color: @blue; -} - -message { - background-color: @bg-col-light; - margin: 2px; - padding: 2px; - border-radius: 5px; -} - -textbox { - padding: 6px; - margin: 20px 0px 0px 20px; - text-color: @blue; - background-color: @bg-col-light; -} - diff --git a/wallust/templates/colors_rofi.rasi b/wallust/templates/colors_rofi.rasi index 2eb00be..4c56811 100644 --- a/wallust/templates/colors_rofi.rasi +++ b/wallust/templates/colors_rofi.rasi @@ -1,10 +1,29 @@ * { - bg-col: {{background}}; - bg-col-light: {{background}}; - border-col: {{background}}; - selected-col: {{background}}; - blue: {{color12}}; - fg-col: {{foreground}}; - fg-col2: {{color13}}; - grey: {{color0}}; + selected-active-foreground: @background; + lightfg: {{foreground}}; + separatorcolor: @accent; + urgent-foreground: {{color13}}; + alternate-urgent-background: @lightbg; + lightbg: {{color0}}; + background-color: transparent; + border-color: @accent; + normal-background: @background; + selected-urgent-background: {{color13}}; + alternate-active-background: @lightbg; + spacing: 2; + alternate-normal-foreground: @foreground; + urgent-background: @background; + selected-normal-foreground: @lightbg; + active-foreground: {{color12}}; + background: {{background}}; + selected-active-background: {{color12}}; + active-background: @background; + selected-normal-background: @lightfg; + alternate-normal-background: @lightbg; + foreground: {{foreground}}; + selected-urgent-foreground: @background; + normal-foreground: @foreground; + alternate-urgent-foreground: {{color13}}; + alternate-active-foreground: {{color12}}; + accent: {{color14}}; } diff --git a/wallust/templates/dunstrc b/wallust/templates/dunstrc index fdf9c88..68585bc 100644 --- a/wallust/templates/dunstrc +++ b/wallust/templates/dunstrc @@ -1,7 +1,7 @@ [global] horizontal_padding = 12 -frame_width = 2 -font = LilexNerdFont 11 +frame_width = 3 +font = LilexNerdFont 16 icon_theme = Papyrus corner_radius = 16 @@ -17,6 +17,6 @@ background = "{{background}}" foreground = "{{foreground}}" [urgency_critical] -background = "{{color15}}" +background = "{{color11}}" foreground = "{{background}}" -frame_color = "{{color7}}" +frame_color = "{{color3}}" |