Basic vim settings, plugins

This commit is contained in:
2020-02-19 06:28:27 +00:00
parent d57c7b822e
commit 55adf58a00
31 changed files with 11 additions and 2818 deletions

View File

@@ -1,23 +0,0 @@
#!/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