Reorganize files for easier restoring via stow, more familiar file structure.

This commit is contained in:
2019-10-22 16:04:37 -04:00
parent aaf05c5231
commit b24321d392
49 changed files with 42 additions and 33 deletions

23
.local/bin/i3scripts/xoffee Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
## Author: Shaun Reed | Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
## ##
## A script to toggle and notify xautolock via polybar menus ##
###############################################################################
# xoffee.sh
if [ $# -ne 1 ]; then
echo "Incorrect number of arguments provided"
exit 1
fi
if [ "$1" = "enable" ]; then
xautolock -disable
notify-send "Caffeine enabled"
elif [ "$1" = "disable" ]; then
xautolock -enable
notify-send "Caffeine disabled"
else
notify-send "Error: Incorrect arg for xoffee script"
exit 1
fi