diff options
author | eug-vs <eug-vs@keemail.me> | 2021-04-25 23:45:52 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-04-25 23:45:52 +0300 |
commit | 0b0bab8608c7bd885dae2433f7bac39e779988bd (patch) | |
tree | 8b2178087b18c31cc8aa891cd5aff79c9e38f7f2 | |
parent | 0ea863546543f6653e2b804fc8ba529439db8f57 (diff) | |
download | dotfiles-0b0bab8608c7bd885dae2433f7bac39e779988bd.tar.gz |
feat: install ncspot
-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 |