diff options
Diffstat (limited to 'config/wal/templates')
-rw-r--r-- | config/wal/templates/6cord.toml | 7 | ||||
-rw-r--r-- | config/wal/templates/colors-wal-dmenu.h | 4 | ||||
-rw-r--r-- | config/wal/templates/colors-wal-dwm.h | 6 | ||||
-rw-r--r-- | config/wal/templates/dunstrc | 4 | ||||
-rw-r--r-- | config/wal/templates/zathurarc | 1 |
5 files changed, 13 insertions, 9 deletions
diff --git a/config/wal/templates/6cord.toml b/config/wal/templates/6cord.toml index f267982..52b5321 100644 --- a/config/wal/templates/6cord.toml +++ b/config/wal/templates/6cord.toml @@ -1,11 +1,14 @@ +# comment to get vim to recognize the ft +token = "" [ properties ] - true-color = true + true-color = false default-name-color = "{color7}" mention-color = "{color5}" mention-self-color = "{color14}" compact-mode = false syntax-highlight-colorscheme = "native" show-emoji-urls = false - obfuscate-words = false shorten-url = false + command-prefix = "[${{CHANNEL}}] " + default-status = "" diff --git a/config/wal/templates/colors-wal-dmenu.h b/config/wal/templates/colors-wal-dmenu.h index afcbb8d..d139d56 100644 --- a/config/wal/templates/colors-wal-dmenu.h +++ b/config/wal/templates/colors-wal-dmenu.h @@ -1,6 +1,6 @@ static const char *colors[SchemeLast][2] = {{ /* fg bg */ - [SchemeNorm] = {{ "{color13}", "{color0}" }}, - [SchemeSel] = {{ "{color13}", "{color4}" }}, + [SchemeNorm] = {{ "{color4}", "{color0}" }}, + [SchemeSel] = {{ "{color1}", "{color0}" }}, [SchemeOut] = {{ "{color13}", "{color8}" }}, }}; diff --git a/config/wal/templates/colors-wal-dwm.h b/config/wal/templates/colors-wal-dwm.h index 133c7a3..eeea645 100644 --- a/config/wal/templates/colors-wal-dwm.h +++ b/config/wal/templates/colors-wal-dwm.h @@ -1,9 +1,9 @@ -static const char norm_fg[] = "{color13}"; +static const char norm_fg[] = "{color4}"; static const char norm_bg[] = "{color0}"; static const char norm_border[] = "{color8}"; -static const char sel_fg[] = "{color13}"; -static const char sel_bg[] = "{color4}"; +static const char sel_fg[] = "{color1}"; +static const char sel_bg[] = "{color0}"; static const char sel_border[] = "{color9}"; static const char *colors[][3] = {{ diff --git a/config/wal/templates/dunstrc b/config/wal/templates/dunstrc index cea407f..61972d6 100644 --- a/config/wal/templates/dunstrc +++ b/config/wal/templates/dunstrc @@ -24,7 +24,7 @@ idle_threshold = 120 ### Text ### - font = Terminus 9 + font = Terminus Medium 8 line_height = 0 markup = full @@ -59,7 +59,7 @@ history_length = 20 ### Misc/Advanced ### - dmenu = /usr/local/bin/dmenu -fn "Terminus:style=Regular:pixelsize=12" -nb "{color0}" -nf "{color13}" -sb "{color4}" -sf "{color13}" -p dunst: + dmenu = /usr/local/bin/dmenu -p dunst: browser = /usr/local/bin/firefox -new-tab always_run_script = true title = Dunst diff --git a/config/wal/templates/zathurarc b/config/wal/templates/zathurarc index ebfd44a..ebb74ca 100644 --- a/config/wal/templates/zathurarc +++ b/config/wal/templates/zathurarc @@ -32,3 +32,4 @@ set render-loading-fg "{color15}" set window-title-home-tilde true set statusbar-basename true set selection-clipboard clipboard +set font "SauceCodePro Nerd Font Mono 10" |