massive cleanup

This commit is contained in:
Luke Smith
2019-05-19 20:05:14 -04:00
parent bf8c6b1e20
commit c6e69e9642
41 changed files with 11 additions and 24 deletions

3
.local/bin/ifinstalled Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/sh
# If $1 command is not available, error code and notify.
command -v "$1" >/dev/null || { notify-send "📦 $1" "must be installed for this function." && exit 1 ;}