Skip to main content
On this page
On this page

Window managers

Last updated: Aug 5, 2020 ·
Posted in wiki#notes

dwm

  • Write a desktop entry for dwm so that it shows up as an option in your login screen on GDM on Ubuntu:

    # /usr/share/xsessions/dwm.desktop
    [Desktop Entry]
    Encoding=UTF-8
    Name=dwm
    Comment=dynamic window manager
    Exec=dwm
    Icon=dwm
    Type=XSession
    

i3

  • Enable "Tap to click" on a laptop [*]

    # /etc/X11/xorg.conf.d/90-touchpad.conf
    Section "InputClass"
          Identifier "touchpad"
          MatchIsTouchpad "on"
          Driver "libinput"
          Option "Tapping" "on"
    EndSection