diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/keyboard | 6 | ||||
-rwxr-xr-x | bin/workspace | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/bin/keyboard b/bin/keyboard index 79d7598..3c57c73 100755 --- a/bin/keyboard +++ b/bin/keyboard @@ -8,10 +8,10 @@ xmodmap -e "add Control = Control_L" # Remap modifiers (Keyboard dependent) xmodmap -e "keycode 94 = Mode_switch" -xmodmap -e 'keycode 108 = Alt_L' +xmodmap -e 'keycode 108 = Super_L' # Remap modifiers (Keyboard independent) -xmodmap -e 'keysym space = Alt_L' +xmodmap -e 'keysym space = Super_L' xmodmap -e 'keycode any = space' # Numbers @@ -33,4 +33,4 @@ xmodmap -e "keysym r = r R 9" killall -9 xcape xcape -e 'Control_L=Escape' -xcape -e 'Alt_L=space' +xcape -e 'Super_L=space' diff --git a/bin/workspace b/bin/workspace index f735014..5a95fde 100755 --- a/bin/workspace +++ b/bin/workspace @@ -7,6 +7,7 @@ largest_gap=$(echo $used_numbers | awk '$1!=p+1{print p+1}{p=$1}') [[ -z $largest_gap ]] && new_number=$(($max_number + 1)) || new_number=$largest_gap target=$(echo $workspaces | dmenu -i -sf green -p "Go to workspace:") +[[ -z $target ]] && exit [[ ! $target = [0-9]:* ]] && target=$new_number:$target exec i3-msg workspace $target |