diff --git a/.config/sway/input b/.config/sway/input index 82665ac..a7ec0a4 100644 --- a/.config/sway/input +++ b/.config/sway/input @@ -14,4 +14,5 @@ input "type:pointer" { accel_profile "flat" pointer_accel 0 } -input "*" xkb_layout colemak-se +## Dont do this since my non-laptop keyboard have hardware colemak layout +#input "*" xkb_layout colemak-se diff --git a/.config/tmux-prefix-detect.sh b/.config/tmux-prefix-detect.sh index b405975..544b855 100755 --- a/.config/tmux-prefix-detect.sh +++ b/.config/tmux-prefix-detect.sh @@ -8,8 +8,8 @@ if tmux show-environment SSH_CONNECTION 2>/dev/null | grep -qv '^-' || \ tmux unbind-key C-b 2>/dev/null tmux display-message "Prefix: C-a (remote)" else - tmux set -g prefix C-b - tmux bind-key C-b send-prefix + tmux set -g prefix C-t + tmux bind-key C-t send-prefix tmux unbind-key C-a 2>/dev/null - tmux display-message "Prefix: C-b (local)" + tmux display-message "Prefix: C-t (local)" fi diff --git a/.tmux.conf b/.tmux.conf index 05ac3a5..59d3724 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,5 +1,5 @@ -set -g prefix C-b -bind C-b send-prefix +set -g prefix C-t +bind C-t send-prefix set -g mouse on set -g base-index 1 # start windows numbering at 1wq