diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/ncspot/config.toml | 21 | ||||
-rw-r--r-- | .config/sxhkd/sxhkdrc | 6 |
2 files changed, 24 insertions, 3 deletions
diff --git a/.config/ncspot/config.toml b/.config/ncspot/config.toml new file mode 100644 index 0000000..29c175e --- /dev/null +++ b/.config/ncspot/config.toml @@ -0,0 +1,21 @@ +use_nerdfont = true +volnorm = true + +[theme] +background = "black" +primary = "light white" +secondary = "light black" +title = "green" +playing = "green" +playing_selected = "light green" +playing_bg = "black" +highlight = "light white" +highlight_bg = "#484848" +error = "light white" +error_bg = "red" +statusbar = "black" +statusbar_progress = "green" +statusbar_bg = "green" +cmdline = "light white" +cmdline_bg = "black" +search_match = "light red" diff --git a/.config/sxhkd/sxhkdrc b/.config/sxhkd/sxhkdrc index e0672d4..e2107e8 100644 --- a/.config/sxhkd/sxhkdrc +++ b/.config/sxhkd/sxhkdrc @@ -8,13 +8,13 @@ XF86AudioLowerVolume pactl set-sink-volume @DEFAULT_SINK@ -5% && pkill -RTMIN+2 dwmblocks XF86AudioPlay - playerctl --player=spotify play-pause + playerctl --player=ncspot play-pause XF86AudioPrev - playerctl --player=spotify previous && sleep 0.1 && pkill -RTMIN+1 dwmblocks + playerctl --player=ncspot previous && sleep 0.1 && pkill -RTMIN+1 dwmblocks XF86AudioNext - playerctl --player=spotify next && sleep 0.1 && pkill -RTMIN+1 dwmblocks + playerctl --player=ncspot next && sleep 0.1 && pkill -RTMIN+1 dwmblocks XF86MonBrightnessUp xbacklight -inc 10 && pkill -RTMIN+3 dwmblocks |