Add dotfiles

This commit is contained in:
josh
2018-08-23 16:03:16 +03:00
parent 15d8911b9e
commit 641da4c1b4
34 changed files with 1458 additions and 0 deletions

16
.scripts/music.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
case $1 in
"toggle")
mpc toggle
;;
"prev")
mpc prev &
pkill -RTMIN+2 i3blocks
;;
"next")
mpc next &
pkill -RTMIN+2 i3blocks
;;
esac