All links of one day
in a single page.
<Previous day - Next day>

rss_feedDaily RSS Feed
floral_left The Daily Shaarli floral_right
——————————— June 1, 2023 - Thursday 01, June 2023 ———————————
X11 - caps - lock - modifiers -

Got a stubborn capslock, e.g. in a VM?

xdotool key Caps_Lock

or the more convoluted, but that likely doesn't require installing additional software:

python3 -c 'from ctypes import *; X11 = cdll.LoadLibrary("libX11.so.6"); display = X11.XOpenDisplay(None); X11.XkbLockModifiers(display, c_uint(0x0100), c_uint(2), c_uint(0)); X11.XCloseDisplay(display)'
-