From 3cbb3fde33d493d1e729af93f699c46d84d5b8a9 Mon Sep 17 00:00:00 2001 From: David JULIEN Date: Mon, 20 Sep 2021 15:12:11 +0200 Subject: [PATCH] feat: change the keybinding for ncmpc now use a generic $VAR in sxhkd -> set MUSIC_PLAYER in .zprofile --- .config/sxhkd/sxhkdrc | 2 +- .config/zsh/.zprofile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/sxhkd/sxhkdrc b/.config/sxhkd/sxhkdrc index b020890..b5dfba8 100644 --- a/.config/sxhkd/sxhkdrc +++ b/.config/sxhkd/sxhkdrc @@ -54,7 +54,7 @@ super + shift + {h,j,k,l} player {prev,stop,toggle,next} super + shift + m - $TERMINAL -g 128x32 -c "floating" -e ncmpc + $TERMINAL -g 128x32 -c "floating" -e $MUSIC_PLAYER super + shift + n $TERMINAL -g 128x32 -c "floating" -e neomutt diff --git a/.config/zsh/.zprofile b/.config/zsh/.zprofile index 10dc4d9..043d577 100644 --- a/.config/zsh/.zprofile +++ b/.config/zsh/.zprofile @@ -28,3 +28,4 @@ export EDITOR="nvim" export TERMINAL="st" export READER="zathura" export BROWSER="firefox" +export MUSIC_PLAYER="ncmpcpp"