Update many things and add new colorscheme, termite config, tilda config, Xresource, etc...

This commit is contained in:
2018-04-30 00:37:31 +02:00
parent 304f883c1e
commit 5ef18b7a9d
17 changed files with 646 additions and 67 deletions

11
scripts/bin/spotify_adfree 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