mv home bin to repo

This commit is contained in:
Simonas Narbutas
2018-07-24 17:08:53 +02:00
parent 9fe2acfeb9
commit f4c7de2e5d
4 changed files with 31 additions and 1 deletions

15
.bin/brightness Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
#
# adjust screen brightness
#
#
# Script to adjust screen brightness
function usage_and_exit {
echo "Usage: $(basename ${0}) <param1>"
exit 1
}
# Exit if we have an incorrect number of arguments
if [ ${#} -ne 1 ]; then
usage_and_exit
fi
xbacklight -inc ${1}