initial commit

This commit is contained in:
2018-03-01 00:47:14 +01:00
commit 304f883c1e
45 changed files with 2651 additions and 0 deletions

11
scripts/bin/spotify Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
spotify=/usr/bin/spotify
if [[ -x $spotify && -x /usr/bin/blockify ]];
then
blockify &
block_pid=$!
$spotify
trap "kill -9 $block_pid" SIGINT SIGTERM EXIT
fi