diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-06 18:19:36 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-06 18:19:36 +0100 |
commit | 4e4a810cb48085208b251e62404f65c96acc709a (patch) | |
tree | 25c3bb215514373086879f2f854000885305f996 | |
parent | linkview update (diff) | |
download | dotfiles-bsd-4e4a810cb48085208b251e62404f65c96acc709a.tar.gz dotfiles-bsd-4e4a810cb48085208b251e62404f65c96acc709a.tar.bz2 dotfiles-bsd-4e4a810cb48085208b251e62404f65c96acc709a.tar.xz dotfiles-bsd-4e4a810cb48085208b251e62404f65c96acc709a.tar.zst dotfiles-bsd-4e4a810cb48085208b251e62404f65c96acc709a.zip |
Making a script to control mpd fromdmenu
Diffstat (limited to '')
-rw-r--r-- | .config/sxhkd/sxhkdrc | 2 | ||||
-rwxr-xr-x | .local/bin/dmpc | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/.config/sxhkd/sxhkdrc b/.config/sxhkd/sxhkdrc index 816f05e..8ccc417 100644 --- a/.config/sxhkd/sxhkdrc +++ b/.config/sxhkd/sxhkdrc @@ -2,7 +2,7 @@ super + Return /usr/local/bin/st super + p - /usr/local/bin/dmenu_run -c -l 5 -m 0 -fn "mononoki Nerd Font:size=12" -nb "#222222" -nf "#bbbbbb" -sb "#b92121" -sf "#eeeeee" + /usr/local/bin/dmenu_run -i -m 0 super + control + r /bin/pkill -USR1 -x sxhkd diff --git a/.local/bin/dmpc b/.local/bin/dmpc new file mode 100755 index 0000000..afec53f --- /dev/null +++ b/.local/bin/dmpc @@ -0,0 +1,10 @@ +#!/usr/local/bin/perl + +sub main +{ + return; +} + +main(); + +__END__ |