diff --git a/VERSION b/VERSION index 810ee4e..d3bdbdf 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.6 +1.7 diff --git a/create_deb_package.sh b/create_deb_package.sh index 3b7f0f8..7febb03 100755 --- a/create_deb_package.sh +++ b/create_deb_package.sh @@ -15,7 +15,7 @@ Description: GUI scripts EOL -for script in a s g r; do +for script in a e g lk r s; do cp $script gui-scripts_$(cat VERSION)-1/usr/local/bin done diff --git a/e b/e new file mode 100755 index 0000000..85ffebb --- /dev/null +++ b/e @@ -0,0 +1,3 @@ +#!/bin/bash +trap 'clear' EXIT +lf diff --git a/lk b/lk new file mode 100755 index 0000000..e5721f0 --- /dev/null +++ b/lk @@ -0,0 +1,18 @@ +#!/bin/bash + +clear && echo Listen to keys... +while true; do +clear && echo Listen to keys... +read -rsn1 input +if [ "$input" = "a" ]; then + a +elif [ "$input" = "e" ]; then + e +elif [ "$input" = "g" ]; then + g +elif [ "$input" = "s" ]; then + s +elif [ "$input" = "q" ]; then + exit 0 +fi +done