Initial commit

This commit is contained in:
2016-10-01 08:23:58 -04:00
commit 0d9a54719a
23 changed files with 460 additions and 0 deletions

17
functions Normal file
View File

@@ -0,0 +1,17 @@
#{- ~/.functions -}#
# Enables or disables kwm hotkeys
hotkeys()
{
case "$1" in
"on") kwmc config hotkeys on; echo "Hotkeys enabled." ;;
"off") kwmc config hotkeys off; echo "Hotkeys disabled." ;;
*) printf "hotkeys: usage: hotkeys {on|off}\n" ;;
esac
}
# Passes basic arithmetic to bc
maths()
{
bc -l <<< "scale=2; $*"
}