From: Armaan Bhojwani Date: Mon, 29 Mar 2021 22:10:16 +0000 (-0400) Subject: Make everything modus themed! X-Git-Url: https://git.armaanb.net/?p=config.org.git;a=commitdiff_plain;h=806acf01573d82e017db6f6dab13f6bd5377f1fe Make everything modus themed! --- diff --git a/config.org b/config.org index 784de35..0ae79f5 100644 --- a/config.org +++ b/config.org @@ -798,15 +798,13 @@ No more clogging up init.el. warp_pointer = 1 modkey = Mod4 border_width = 4 - tile_gap = 10 autorun = ws[1]:/home/armaa/Code/scripts/autostart #+end_src *** Apprearance -Gruvbox colors #+begin_src conf :tangle ~/.spectrwm.conf - color_focus = rgb:83/a5/98 - color_focus_maximized = rgb:d6/5d/0e - color_unfocus = rgb:58/58/58 + color_focus = rgb:00/d3/d0 + color_focus_maximized = rgb:ee/cc/00 + color_unfocus = rgb:55/55/55 #+end_src *** Bar #+begin_src conf :tangle ~/.spectrwm.conf @@ -1216,7 +1214,7 @@ window: x: 5 y: 5 -background_opacity: 0.6 +background_opacity: 1 #+end_src *** Keybindings Send + modifier through @@ -1234,35 +1232,50 @@ key_bindings: } #+end_src *** Color scheme -Gruvbox +Modus vivendi. Source: https://github.com/ishan9299/Nixos/blob/d4bbb7536be95b59466bb9cca4d671be46e04e81/user/alacritty/alacritty.yml#L30-L118 #+begin_src yml :tangle ~/.config/alacritty/alacritty.yml colors: # Default colors primary: background: '#000000' - foreground: '#ebdbb2' + foreground: '#ffffff' - # Normal colors + cursor: + text: '#000000' + background: '#777777' + + # Normal colors (except green it is from intense colors) normal: - black: '#282828' - red: '#cc241d' - green: '#98971a' - yellow: '#d79921' - blue: '#458588' - magenta: '#b16286' - cyan: '#689d6a' - white: '#a89984' + black: '#000000' + red: '#ff8059' + green: '#00fc50' + yellow: '#eecc00' + blue: '#29aeff' + magenta: '#feacd0' + cyan: '#00d3d0' + white: '#eeeeee' - # Bright colors + # Bright colors [all the faint colors in the modus theme] bright: - black: '#928374' - red: '#fb4934' - green: '#b8bb26' - yellow: '#fabd2f' - blue: '#83a598' - magenta: '#d3869b' - cyan: '#8ec07c' - white: '#ebdbb2' + black: '#555555' + red: '#ffa0a0' + green: '#88cf88' + yellow: '#d2b580' + blue: '#92baff' + magenta: '#e0b2d6' + cyan: '#a0bfdf' + white: '#ffffff' + + # dim [all the intense colors in modus theme] + dim: + black: '#222222' + red: '#fb6859' + green: '#00fc50' + yellow: '#ffdd00' + blue: '#00a2ff' + magenta: '#ff8bd4' + cyan: '#30ffc0' + white: '#dddddd' #+end_src ** IPython *** General @@ -1357,7 +1370,7 @@ For any GNU Readline programs gpgsign = true #+end_src ** Dunst -Lightweight notification daemon. Gruvbox colors, based on https://github.com/a-schaefers/i3-wm-gruvbox-theme/ +Lightweight notification daemon. *** General #+begin_src conf :tangle ~/.config/dunst/dunstrc [global] @@ -1371,7 +1384,7 @@ Lightweight notification daemon. Gruvbox colors, based on https://github.com/a-s show_age_threshold = 60 word_wrap = yes ignore_newline = no - geometry = "400x5-20+20" + geometry = "400x5-10+10" transparency = 0 idle_threshold = 120 monitor = 0 @@ -1381,14 +1394,14 @@ Lightweight notification daemon. Gruvbox colors, based on https://github.com/a-s padding = 8 horizontal_padding = 8 max_icon_size = 32 - separator_color = "#585858" + separator_color = "#777777" startup_notification = false #+end_src *** Modes #+begin_src conf :tangle ~/.config/dunst/dunstrc [frame] - width = 4 - color = "#585858" + width = 3 + color = "#777777" [shortcuts] close = mod4+c @@ -1396,20 +1409,20 @@ Lightweight notification daemon. Gruvbox colors, based on https://github.com/a-s history = mod4+ctrl+c [urgency_low] - background = "#282828" - foreground = "#ebdbb2" - highlight = "#ebdbb2" + background = "#222222" + foreground = "#ffffff" + highlight = "#777777" timeout = 5 [urgency_normal] - background = "#282828" - foreground = "#ebdbb2" - highlight = "#ebdbb2" + background = "#222222" + foreground = "#ffffff" + highlight = "#777777" timeout = 15 [urgency_critical] - background = "#282828" - foreground = "#cc241d" - highlight = "#ebdbb2" + background = "#222222" + foreground = "#a60000" + highlight = "#777777" timeout = 0 #+end_src