diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2021-09-22 13:16:33 +0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2021-09-22 13:16:33 +0400 |
| commit | 97afd09fbe73955d1c636d3f223a68e411413ef9 (patch) | |
| tree | 370750a5115e0bcb0231bf9d19b7f5875667a047 /.local/bin/scripts/dmenucmd | |
| parent | 2f6a0e3d3693cb00f17530459c95073aeaed15c6 (diff) | |
Changed theme for dmenu and gtk; changed terminal to alacritty
Diffstat (limited to '.local/bin/scripts/dmenucmd')
| -rwxr-xr-x | .local/bin/scripts/dmenucmd | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/.local/bin/scripts/dmenucmd b/.local/bin/scripts/dmenucmd index d205e0c..b171b44 100755 --- a/.local/bin/scripts/dmenucmd +++ b/.local/bin/scripts/dmenucmd @@ -1,9 +1,8 @@ #!/bin/sh dmenumon="0" dmenufont="monospace:size=15" -col_gray1="#222222"; -col_gray2="#444444"; -col_gray3="#bbbbbb"; -col_gray4="#eeeeee"; -col_cyan="#005577"; -dmenu -l 10 -i -m $dmenumon -fn $dmenufont -nb $col_gray1 -nf $col_gray3 -sb $col_cyan -sf $col_gray4 +normal_fg="#eeeeec" +normal_bg="#111416" +selected_fg="#faebd7" +selected_bg="#005577" +dmenu -l 10 -i -m $dmenumon -fn $dmenufont -nb $normal_bg -nf $normal_fg -sb $selected_bg -sf $selected_fg |