mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-10-31 23:49:25 +01:00
Mikaela Suomalainen
0afc716ccf
That was just too evil, especially as the line has moved to my i3wm config where nothing else I have tried works.
13 lines
384 B
Bash
13 lines
384 B
Bash
# Map compose to left menu and kill x with ctrl alt backspace and
|
|
# disable unbreakable space
|
|
setxkbmap -option compose:menu -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
|
|
|
|
# Workaround disappearing cursors, probably no harm in any case
|
|
export XCURSOR_DISCOVER=1
|