move config files to new directory

This commit is contained in:
ksyasuda
2021-07-28 23:44:53 -07:00
commit 58f9300f1e
121 changed files with 16536 additions and 0 deletions

10
scripts/get-player-title Executable file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env bash
STAT=`playerctl status 2>/dev/null`
if [[ $STAT == "" ]]; then
printf "\n"
elif [[ $(playerctl status 2>/dev/null) == "Playing" ]]; then
printf "%s\n" "Playing: $(playerctl metadata title)"
else
printf "%s\n" "Paused: $(playerctl metadata title)"
fi