From 56fdeeea3b5bcd0e0f1169bdbad44d0be0e08740 Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Sat, 18 Jun 2022 15:14:58 +0200 Subject: [PATCH] remove junk --- hardware/keyboard/xmodmap.md | 12 ------ system/X.md | 72 ------------------------------------ 2 files changed, 84 deletions(-) delete mode 100644 hardware/keyboard/xmodmap.md delete mode 100644 system/X.md diff --git a/hardware/keyboard/xmodmap.md b/hardware/keyboard/xmodmap.md deleted file mode 100644 index 671aebd..0000000 --- a/hardware/keyboard/xmodmap.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -title: "xmodmap" -tags: [ "Documentation", "hardware" ] ---- -Ensure you're not stuck in CAPS on mode: - -> xmodmap -e 'clear Lock' - -Remap the keyboard so CAPS LOCK=ESC: - -> xmodmap -e 'keycode 0x42=Escape' - diff --git a/system/X.md b/system/X.md deleted file mode 100644 index 746bee6..0000000 --- a/system/X.md +++ /dev/null @@ -1,72 +0,0 @@ ---- -title: "X" -tags: [ "Documentation", "System" ] ---- -X is a server which listens to requests for display. - -Basic configurations are under /etc/X11, but xorg.conf is generally no longer used. - -Examples can be found under /usr/share/X11/xorg.conf.d/ - -The xorg displays a section, then identifiers, then some options, then ends the section. - -> Section "InputDevice" - -> # generated from default - -> Identifier - -> "Mouse0" - -> Driver - -> "mouse" - -> Option - -> "Protocol" "auto" - -> Option - -> "Device" "/dev/psaux" - -> Option - -> "Emulate3Buttons" "no" - -> Option - -> "ZAxisMapping" "4 5" - -> EndSection - -# Research -See current settings with: - -xdpyinfo | less - -Basic info can often be gained with: - -> man ati - -> man Radeon - -Internet resources are available at www.x.org/wiki/Projects/Drivers/ - -# Display Manager -This presents login options, then starts the desktop. One is LightDM manager. - -The program reads the configuration files in the order of: /usr/share/lightdm/lightdm.conf.d/, /etc/lightdm/lightdm.conf.d/, then /etc/lightdm/lightdm.conf. - -The file /usr/share/lightdm/lightdm.conf.d/50-gues-wrapper.conf - -# X defaults - -~/.Xresources and ~/.Xdefaults load basic X settings. - -Xdefaults is loaded each time if no Xresources is present. - -If Xresources is present, Xdefaults it ignored. Xresources is loaded with: - -> xrdb ~/.Xresources -