Clean up configs, remove bashrc conflicting with bash

This commit is contained in:
natemaia
2017-11-30 22:21:33 -08:00
parent 15fcfc4da1
commit eb0884e453
272 changed files with 7464 additions and 1239 deletions

26
home/bin/toggle-compton Executable file
View File

@ -0,0 +1,26 @@
#!/usr/bin/env bash
on=""
off=""
if [[ $1 == *toggle* ]]; then
if pgrep -x compton > /dev/null 2>&1; then
al-compositor --stop
else
al-compositor --start
fi
exit 0
fi
if pgrep -x compton > /dev/null 2>&1; then
echo "$on"
else
echo "%{F#888888}$off"
fi