After a few years alternating Mac and PC Keyboards, I ended up deciding that I like the Mac layout of the Command Key (next to the space bar), so I changed my Ctrl key position. So I use the following layout (bottom left of the keyboard):
Super | Alt | Ctrl | Space
I also like to use my “Caps Lock” key as a Super key (like a Chromebook keyboard), so all my window shortcuts are available with my left finger on the super key and my right finger on the specific key (like Suprt+D or Super+F)
With Linux I can have the best of all layouts!
This is how I achieve my personal layout with different compositors:
Sway
input "type:keyboard" {
xkb_layout "es"
xkb_options "caps:super,ctrl:swap_lalt_lctl_lwin"
xkb_numlock enable
repeat_delay 300
repeat_rate 50
}
input "type:touchpad" {
tap enable
natural_scroll disabled
pointer_accel 0 # set mouse sensitivity (between -1 and 1)
}
Hyprland
input {
kb_layout = es
kb_options = caps:super,ctrl:swap_lalt_lctl_lwin
numlock_by_default = 1
repeat_delay=300
repeat_rate=50
touchpad {
natural_scroll = no
scroll_factor = 0.7
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
}
}
labwc
# environment
XKB_DEFAULT_LAYOUT=es
XKB_DEFAULT_OPTIONS=caps:super,ctrl:swap_lalt_lctl_lwin
# rc.xml
<keyboard>
<numlock>on</numlock>
<repeatRate>50</repeatRate>
<repeatDelay>300</repeatDelay>
<keybind.....
</keyboard>
...
<libinput>
<device category="">
<naturalScroll>no</naturalScroll>
<pointerSpeed></pointerSpeed>
<scrollFactor>2</scrollFactor>
<tap>yes</tap>
</device>
</libinput>
x11
.xinitrc
xmodmap .Xmodmap
~/.local/bin/remaps
.Xmodmap
! -*- coding: utf-8 -*-
! here's the default setting on special keys
! xmodmap -pke | grep -P '(Control|Super|Alt|Menu)'
! swap Ctrl and Alt keys
clear control
clear mod1
clear mod4
clear lock
!
keycode 133 = Alt_L Meta_L
keycode 64 = Control_L
keycode 37 = Super_L
keycode 108 = ISO_Level3_Shift
keycode 105 = Control_R
keycode 134 = Super_R
keycode 135 = Menu NoSymbol Menu
keycode 77 = Num_Lock
keycode 66 = Super_R Super_R NoSymbol Caps_Lock
!
add control = Control_L Control_R Super_L
add mod1 = Alt_L Meta_L
add mod2 = Num_Lock
add mod4 = Super_R
add mod5 = ISO_Level3_Shift
~/.local/bin/remaps
#!/bin/sh
# This script is called on startup to remap keys.
# Increase key speed via a rate change
xset r rate 300 50
# Map the caps lock key to super...
#setxkbmap -option caps:super
#setxkbmap -option caps:ctrl_modifier
# But when it is pressed only once, treat it as escape.
killall xcape 2>/dev/null ; xcape -e 'Super_R=Escape'
# Map the menu button to right super as well.
#xmodmap -e 'keycode 135 = Super_R'
xmodmap ~/.Xmodmap
# Turn off the caps lock if on since there is no longer a key for it.
xset -q | grep "Caps Lock:\s*on" && xdotool key Caps_Lock
# Num Lock
numlockx