mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-07 09:49:21 +01:00
10 lines
300 B
Bash
10 lines
300 B
Bash
# Map compose to left Windows key and kill x with ctrl alt backspace and
|
|
# disable unbreakable space
|
|
setxkbmap -option compose:lwin -option terminate:ctrl_alt_bksp -option nbsp:none
|
|
|
|
# Set TZ as the current timezone. This is supposed to be sent over SSH.
|
|
TZ=$(date +%Z)
|
|
|
|
# Enable numlock
|
|
numlockx on
|