mayfrost-guides/X.md

502 lines
17 KiB
Markdown
Raw Normal View History

2018-10-16 22:17:45 +00:00
# X
2018-12-29 22:50:21 +00:00
Set __X__ and a desktop environment fast.
2018-10-16 22:16:10 +00:00
2018-12-29 20:55:43 +00:00
1. [INSTALLING X](#installing-x)
2018-12-29 21:46:22 +00:00
2. [CONFIGURING X](#configuring-x)
2018-12-29 22:50:21 +00:00
2.1. [SCREEN RESOLUTION](#screen-resolution)
2.2. [SCREEN TEARING](#screen-tearing)
2019-01-04 18:36:05 +00:00
3. [FONTS](#fonts)
3.1. [CORE FONTS](#core-fonts)
3.2. [FONTCONFIG](#fontconfig)
4. [THEME](theme)
5. [NO DE](#no-de)
5.1. [XINITRC CONFIGURATION FILE](#xinitrc-configuration-file)
5.2. [LAUNCH X](#launch-x)
5.3. [LAUNCH X AT LOGIN](#launch-x-at-login)
6. [KEY BINDINGS](#key-bindings)
6.1. [GETTING KEYS INFORMATION](#getting-keys-information)
6.2. [XBINDKEYSRC CONFIGURATION FILE](#xbindkeysrc-configuration-file)
7. [CLIPBOARD](#clipboard)
7.1. [CLIPBOARD BINDINGS](#clipboard-bindings)
8. [WINDOW MANAGER](#window-manager)
8.1. [BASIC SHORTCUTS](#basic-shortcuts)
8.2. [RATPOISONRC CONFIGURATION FILE](#ratpoisonrc-configuration-file)
2018-10-16 22:25:44 +00:00
2018-12-29 20:55:43 +00:00
## INSTALLING X
Generally it can be installed from the live _CD or DVD_ or afterwards with the package manager. For example on __CRUX__:
2018-12-29 22:50:21 +00:00
* Installing a minimal set of xorg and xorg dependent tools one by one (you must know which _"DRIVER"_ you use)
`prtget depinst xorg-server xorg-xf86-video-<DRIVER> xorg-font-util xkeyboard-config xorg-xinit`
2018-12-29 20:55:43 +00:00
* Alternatively just install the metapackage _"xorg"_
2018-10-16 22:25:44 +00:00
2018-12-29 21:46:22 +00:00
## CONFIGURING X
2018-12-29 22:50:21 +00:00
__X__ can be configured for several things.
2018-12-29 21:46:22 +00:00
2018-12-29 22:50:21 +00:00
__OPTION 1__
You can generate a general configuration file containing all sorts of options and that will appear on your home directory and later move it to _"/etc/X11/xorg.conf"_. You need to stop the __X__ server and have root privileges for creating it.
2018-12-29 21:46:22 +00:00
* Create a new configuration file "xorg.conf.new"
2018-12-29 22:50:21 +00:00
`Xorg -configure`
* change it to _"/etc/X11/xorg.conf"_
`mv /path/to/xorg.conf.new /etc/X11/xorg.conf`
2018-12-29 21:46:22 +00:00
* on other X versions the commands are
2018-12-29 22:50:21 +00:00
`XFree86 -configure`
`XFree86 -xf86config /etc/X11/XF86Config.new`
2018-12-29 21:46:22 +00:00
2018-12-29 22:50:21 +00:00
__OPTION 2__
Or you can create specific configuration files under the _"/etc/X11/xorg.conf.d/"_ directory for particular cases.
2018-12-29 21:46:22 +00:00
2018-12-29 22:50:21 +00:00
### SCREEN RESOLUTION
2018-12-30 14:40:53 +00:00
To make changes you generally don't need to know supported resolutions but it helps using defaults.
2018-12-31 05:18:09 +00:00
* List currently supported resolutions (optional):
2018-12-29 23:33:18 +00:00
`xrandr`
2018-12-31 05:18:09 +00:00
* Generate a modeline:
2018-12-29 22:50:21 +00:00
`cvt <WIDTH> <HEIGHT> <REFRESH_RATE>`
2018-12-31 05:18:09 +00:00
* Use that ouput to add changes on the configuration file _"/etc/X11/xorg.conf"_:
2018-12-29 21:46:22 +00:00
```
Section "Device"
2018-12-29 22:50:21 +00:00
Identifier "<DEVICE_NAME>"
Driver "<DRIVER_NAME>"
2018-12-29 21:46:22 +00:00
EndSection
2018-12-29 22:50:21 +00:00
Section "Monitor"
Identifier "<MONITOR_NAME>"
2018-12-29 23:33:18 +00:00
Modeline "<CVT_OUTPUT>
2018-12-30 14:40:53 +00:00
Option "PreferredMode" "<THE_RESOLUTION_YOU_WANT>"
2018-12-29 23:33:18 +00:00
Option "Enable" "True"
2018-12-29 22:50:21 +00:00
EndSection
Section "Screen"
Identifier "<DEFAULT_SCREEN>"
Monitor "<MONITOR_NAME>"
2018-12-29 23:33:18 +00:00
Device "<DEVICE_NAME>"
2018-12-29 22:50:21 +00:00
SubSection "Display"
2018-12-30 14:43:55 +00:00
Modes "<RESOLUTION_YOU_WANT>"
2018-12-29 22:50:21 +00:00
EndSubSection
EndSection
```
2018-12-30 14:43:55 +00:00
In _"Modes"_ the resolution you want can contain a framerate appended but needs to be exactly the same from the modeline. A full example configuration follows:
2018-12-30 14:40:53 +00:00
```
Section "Device"
Identifier "Device0"
Driver "Intel"
EndSection
Section "Monitor"
Identifier "HDMI1"
Modeline "1280x720_60.00" 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync
Option "PreferredMode" "1280x720"
Option "Enable" "True"
EndSection
Section "Screen"
Identifier "Screen0"
Monitor "HDMI1"
Device "Device0"
SubSection "Display"
Modes "1280x720_60.00"
EndSubSection
EndSection
```
2018-12-30 14:43:55 +00:00
Notice the framerate appended with an underscore in _"Mode"_, this comes from _"Modeline"_.
2018-12-29 22:50:21 +00:00
### SCREEN TEARING
To solve screen tearing you can use any of these config files in its appropriate directory.
* If you have Intel add these changes to _"/etc/X11/xorg.conf"_ or in the separate file _"/etc/X11/xorg.conf.d/20-intel.conf"_:
2018-12-29 21:46:22 +00:00
```
Section "Device"
2018-12-29 22:50:21 +00:00
Identifier "Intel Graphics"
Driver "intel"
Option "TearFree" "true"
2018-12-29 21:46:22 +00:00
EndSection
```
2018-12-29 22:50:21 +00:00
* If you still have issues with Intel add a line with the option _UXA_:
2018-12-29 21:46:22 +00:00
```
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "AccelMethod" "uxa"
Option "TearFree" "true"
EndSection
```
2018-12-29 22:50:21 +00:00
* If you have AMD add these changes to _"/etc/X11/xorg.conf"_ or in the separate file _"/etc/X11/xorg.conf.d/20-amdgpu.conf_":
```
Section "Device"
Identifier "AMD Graphics"
Driver "amdgpu"
Option "TearFree" "true"
EndSection
2018-12-30 20:11:43 +00:00
```
2019-01-04 18:36:05 +00:00
## FONTS
There are two ways of adding fonts, with __Fontconfig__ or with __X__ core fonts. Make sure the fonts and the directory (and all of its parents) are world-readable:
* The directory needs appropriate permissions.
`chmod 755 /path/to/fonts/`
* The fonts need appropriate permissions.
`chmod 644 /path/to/fonts/*`
* If the fonts are global they need to be owned by root.
`chown root:root /path/to/fonts/*`
### CORE FONTS
The next deals with core fonts.
2018-12-31 01:55:23 +00:00
* Fonts can be added to the database on _"/etc/X11/xorg.conf"_ or in the separate file _"/etc/X11/xorg.conf.d/fonts.conf_".
* Supported font formats are _BDF_, binary _PCF_, and _SNF_.
* Scalable fonts must appear in the font path before the bitmap fonts when possible.
2018-12-31 01:59:41 +00:00
* You can query the current _font paths_ (along with other information) by using __xset__:
`xset q`
2019-01-04 18:36:05 +00:00
* To see the list of installed fonts:
`xlsfonts`
2018-12-31 04:31:30 +00:00
* All this works for cursors too.
2018-12-31 01:55:23 +00:00
__STEP 1__: Create a font directory with font files and index files.
2018-12-31 03:39:27 +00:00
* First you might need to correctly name scalable fonts by creating a _fonts.scale_ file in the directory:
2019-01-04 18:36:05 +00:00
`mkfontscale /path/to/fonts/`
2018-12-31 03:39:27 +00:00
* Next create a proper font index file _fonts.dir_ to list available fonts in this directory:
2019-01-04 18:36:05 +00:00
`mkfontdir /path/to/fonts/`
2018-12-31 03:39:27 +00:00
* The _fonts.alias_ provides aliases you can use and is manually created.
2018-12-31 01:55:23 +00:00
__STEP 2__: Inform __X__ where to look for font directories.
2019-01-04 18:36:05 +00:00
* Edit _"/etc/X11/xorg.conf"_ or in the separate file _"/etc/X11/xorg.conf.d/fonts.conf"_:
2018-12-29 22:50:21 +00:00
```
2018-12-30 20:11:43 +00:00
Section "Files"
FontPath "/path/to/fonts/"
2019-01-04 18:36:05 +00:00
FontPath "/path/to/other/fonts/"
2018-12-30 20:11:43 +00:00
EndSection
```
2018-12-31 01:55:23 +00:00
Where _"/path/to/fonts/"_ can be the default _/usr/local/share/fonts/_, a directory under _/usr/local/share/fonts/_, or any directory of your choosing.
2019-01-04 18:36:05 +00:00
__STEP 3__: Re-scan the font directories to apply new fonts.
* Either restart __X__ or reload using _xset_ to apply changes:
`xset fp rehash`
2018-12-31 03:12:36 +00:00
2018-12-31 01:55:23 +00:00
__TEMPORARY CHANGES (OPTIONAL)__
2019-01-04 18:36:05 +00:00
You can add fonts temporarily.
2018-12-31 01:55:23 +00:00
* Temporarily add fonts first on the list:
`xset +fp /path/to/fonts`
* Temporarily add fonts last on the list:
`xset fp+ /path/to/fonts`
2018-12-29 22:50:21 +00:00
2019-01-04 18:47:12 +00:00
__TRUETYPE FONTS__
* To enable TrueType® fonts enable Freetype by adding the following line either to _"/etc/X11/xorg.conf"_ or in the separate file _"/etc/X11/xorg.conf.d/fonts.conf"_:
2019-01-04 18:36:05 +00:00
```
Section "Module"
Load "freetype"
EndSection
```
2019-01-04 18:47:12 +00:00
### FONTCONFIG
The next deals with __Fontconfig__.
__ADDING FONTS__
* Fonts added under:
`/usr/share/fonts/`
* or:
`/usr/local/share/fonts/`
* or locally under:
`~/.fonts/`
* are automatically added after updating __Fontconfig__.
__GLOBAL CONFIGURATION__
* User generated system-wide changes are in:
`/etc/fonts/local.conf`
* or by replacing files under the directory:
`/etc/fonts/conf.d/`
* with symbolic links to files from:
`/etc/fonts/conf.avail/`
The system-wide configuration file _/etc/fonts/fonts.conf_ is generally not touched by the user.
__LOCAL CONFIGURATION__
* User-specific configuration file (can be overridden with the "FONTCONFIG_FILE" environment variable):
`~/.fonts.conf`
* or:
`~/.config/fontconfig/fonts.conf`
* or putting symbolic links to files from:
`/etc/fonts/conf.avail/`
* to:
`~/.config/fontconfig/conf.d`
__BITMAP FONTS__
The bitmap fonts may not be enabled by default on __FONTCONFIG__.
* Remove current configuration:
`rm /etc/fonts/conf.d/70-no-bitmaps.conf`
* Create symbolic link to configuration enabling it:
`ln -s /etc/fonts/conf.avail/70-yes-bitmaps.conf /etc/fonts/conf.d/70-yes-bitmaps.conf`
2018-12-30 22:17:41 +00:00
## THEME
To tweak the theme of your terminal emulator you need to tweak the _".Xresources"_ file.
Next is an example _".Xresources"_ file which goes under your home directory:
```
xterm*maximized: true
xterm*background: black
xterm*foreground: grey
xterm*cursorColor: green
xterm*cursorBlink: false
xterm*faceName: Fixedsys Excelsior 3.01:size=11:antialias=true
xterm*faceNameDoublesize: WenQuanYi Zen Hei
xterm*termName: xterm-256color
xterm*locale: true
xterm*utf8Title: true
xterm*dynamicColors: true
xterm*borderWidth: 0
xterm*eightBitInput: false
xterm*metaSendsEscape: true
xterm*decTerminalID: vt340
urxvt*maximized: true
urxvt*background: black
urxvt*foreground: white
urxvt*cursorColor: green
urxvt*cursorBlink: false
urxvt*faceName: GNU Unifont:size=12:antialias=true
urxvt*faceNameDoublesize: WenQuanYi Zen Hei
urxvt*termName: urxvt-256color
urxvt*locale: true
urxvt*utf8Title: true
urxvt*font: fixed
urxvt*boldFont: fixed
urxvt*dynamicColors: true
urxvt*borderWidth: 0
```
To load changes run:
`xrdb -merge ~/.Xresources`
2018-10-16 22:17:45 +00:00
## NO DE
2018-12-29 21:46:22 +00:00
To use a window manager without any desktop environment, or even a login manager, you can just install the applications mentioned here and edit the _".xinitrc"_ file with the appropriate changes and start _"X"_ from the command line. The required applications are:
2018-10-20 01:16:34 +00:00
* Ratpoison (or your preferred window manager in the _".xinitrc"_ file)
2018-10-16 22:45:51 +00:00
* Xbindkeys
2018-10-20 01:16:34 +00:00
* hsetroot or imagemagick (or replace with your preferred wallpaper changer in the _".xinitrc"_ file)
* ImageMagick (or replace with your preferred screenshot program in the _".xinitrc"_ file)
* FFmpeg or libav-tools (or replace with your preferred screencasting program in the _".xinitrc"_ file)
* UXTerm or urxvt (in the case you want to set the terminal emulator theme with the _".Xresources"_ file)
2018-10-16 22:45:51 +00:00
* dmenu
2018-10-20 00:32:02 +00:00
### XINITRC CONFIGURATION FILE
2018-10-16 22:40:17 +00:00
Next is an example _".xinitrc"_ file which goes under your home directory:
2018-10-16 22:16:10 +00:00
```
# load your preferred terminal settings
2018-10-20 08:18:27 +00:00
xrdb -merge -I$HOME ~/.Xresources
2018-10-16 22:16:10 +00:00
# load your preferred keybindings
xbindkeys
# set the wallpaper (requires hsetroot to be installed)
hsetroot -fill ~/.wallpaper.jpg
# alternative way to set the wallpaper using imagemagick (DISABLED)
#display -size 1280x800 -window root ~/.wallpaper.png
# launch the window manager (needs to be done at the end)
exec dbus-launch --sh-syntax --exit-with-session ratpoison
```
2018-10-20 00:32:02 +00:00
### LAUNCH X
After the configuration file is properly set, you login and type on the terminal:
2018-10-16 22:55:35 +00:00
`startx`
whenever you want to start X.
2018-10-20 00:32:02 +00:00
### LAUNCH X AT LOGIN
To launch X at login, place the following at either your _".bash_profile"_ or _".bashrc"_ file:
```
if [ $(tty) = "/dev/tty1" ]
then
startx > /dev/null 2>&1
fi
```
2018-10-20 03:14:47 +00:00
This will automatically launch _"X"_ at the first _"tty"_ (_"virtual terminal"_). If you are confused, to switch between ttys press _"Ctrl-Alt-F\<X>"_ (where _"\<X>_" is a number). So to change to the tty with xorg you'll press _"Ctrl-Alt-F1"_.
2018-10-16 22:16:10 +00:00
2018-12-30 22:17:41 +00:00
## KEY BINDINGS
Custom keys can be added with the __Xbindkeys__ program.
2018-10-16 22:16:10 +00:00
2018-10-20 00:32:02 +00:00
### GETTING KEYS INFORMATION
2018-10-16 22:16:10 +00:00
With the help of the default xev program you can check the keys you want:
2018-10-16 22:25:44 +00:00
* Start the program and type the key you want to see its information
`xev > keys.txt`
* Look for the line that says
`keycode KEY_NUMBER (keysym INGORE_THIS, KEY_NAME)`
* Now on _".xbindkeysrc"_ add the information for each bind:
2018-10-16 22:16:10 +00:00
```
"WHAT_YOU_WANT_HERE_GOES_HERE"
m:0x0 + c:KEY_NUMBER
KEY_NAME
```
2018-10-20 00:39:07 +00:00
### XBINDKEYSRC CONFIGURATION FILE
2018-10-16 22:16:10 +00:00
In the example below we'll have the modified keys:
* The "windows" key switch windows using dmenu pre-installed.
* The "menu" key brings an application launcher you type names into using dmenu.
* The "print screen" key takes a screenshot using imagemagick.
* The "scroll lock" key records the desktop using either libav-tools or ffmpeg.
* The "mute" button if available will mute/unmute volume.
* The "lower volume" button if available will lower volume.
* The "raise volume" button if available will raise volume.
2018-10-16 22:40:17 +00:00
Now the example _".xbindkeysrc"_ file which goes under your home directory:
2018-10-16 22:16:10 +00:00
```
# Enable "Scroll_Lock" for the next keybinding
keystate_scrolllock= enable
# Switch windows using the "windows key" (needs dmenu)
"ratpoison -c "select $(ratpoison -c "windows "%t"" | dmenu -nf gray -nb black -sf black -sb gray -b -l 20)""
Super_L
# Launch application using the "menu key" (needs dmenu)
"dmenu_run -nf gray -nb black -sf black -sb gray -b"
m:0x0 + c:135
Menu
# Take screenshot using the "print screen key" (needs imagemagick)
2018-11-01 19:39:42 +00:00
"import -window root png:$HOME/x_$(date "+%Y-%m-%d-%H:%M:%S").png"
2018-10-16 22:16:10 +00:00
m:0x0 + c:107
Print
2018-10-16 22:45:51 +00:00
# Record desktop with avconv (libav-tools) or install ffmpeg and replace avconv
2018-11-01 19:39:42 +00:00
"killall -INT avconv 2>/dev/null || avconv -f x11grab -r 10 -s $(xrandr | grep '*' | tr -s ' ' | cut -d ' ' -f2) -i :0.0 $HOME/x_$(date "+%Y-%m-%d-%H:%M:%S").mp4 &"
2018-10-16 22:16:10 +00:00
m:0x0 + c:78
Scroll_Lock
# Mute/unmute volume
"amixer set Master toggle"
m:0x0 + c:121
XF86AudioMute
# Lower volume
"amixer set PCM 5%-"
m:0x0 + c:122
XF86AudioLowerVolume
# Raise volume
"amixer set PCM 5%+"
m:0x0 + c:123
XF86AudioRaiseVolume
```
2018-10-23 01:40:46 +00:00
## CLIPBOARD
2018-10-23 21:53:04 +00:00
_"Xsel"_ with the help of _"GNU Screen"_ will be used as intermediary between the terminal and _"X"_. The following commands are examples we will replace by more simple bindings:
2018-10-23 21:46:56 +00:00
* To paste from _"X"_ clipboard
2018-10-23 01:40:46 +00:00
`xsel -ob`
2018-10-23 21:46:56 +00:00
* To copy to _"X"_ clipboard from inside _"GNU Screen"_
2018-10-23 01:40:46 +00:00
`cat | xsel -ib`
Then hit _"Ctrl-a + ]"_, then _"Enter"_, then _"Ctrl-d"_.
2018-10-23 21:46:56 +00:00
### CLIPBOARD BINDINGS
2018-10-23 21:53:04 +00:00
For ease of use we will use _"GNU Screen's"_ configuration file _".screenrc"_ to save shortcuts for clipboard exchange instead of the above commands. Save these in your _".screenrc"_ file:
2018-10-23 21:50:08 +00:00
```
2018-10-24 00:29:33 +00:00
# Copy from "GNU Screen" to "X" clipboard automatically when using "GNU Screen's" copy selection
2018-10-23 21:50:08 +00:00
bindkey -m ' ' eval 'stuff \040' 'writebuf' 'exec sh -c "xsel -ib < /tmp/screen-exchange"'
2018-10-24 00:29:33 +00:00
# Copy from "X" to "GNU Screen" clipboard by pressing "Ctr-a + b" + "Ctrl-a + ]" on "GNU Screen's" normal mode
bind b eval 'exec sh -c "xsel -ob > /tmp/screen-exchange && screen -X readbuf"'
2018-10-23 21:50:08 +00:00
```
2018-10-23 21:46:56 +00:00
2018-12-30 22:17:41 +00:00
## WINDOW MANAGER
Productive, automated, scriptable, and minimal, __Ratpoison__ is a strict tiling window manager using bindings similar to GNU Screen. A few of its benefits are.
2018-12-29 21:46:22 +00:00
* No mouse used, all done by commands called by typing _"control"_ and _"t"_ at the same time, plus another key.
* You can set your own bindings in the file _".ratpoisonrc"_ which is extremely friendly.
2018-12-30 15:05:17 +00:00
* Extensible by [scripts](http://ratpoison.wxcvbn.org/cgi-bin/wiki.pl/Scripts). The _"rpws"_ script for example adds multiple workspaces (comes by default with Ratpoison), another script (_"[expose.pl](http://ratpoison.wxcvbn.org/cgi-bin/wiki.pl/expose.pl)"_) gives a mozaic of current windows.
* Can temporarily switch to another window manager with the _"tmpwm"_ command for your comfort.
2018-12-29 21:46:22 +00:00
* Full manual available from the terminal:
`info ratpoison`
2018-10-16 22:16:10 +00:00
2018-12-29 21:46:22 +00:00
### BASIC SHORTCUTS
* Show the help cheatsheet:
`Ctrl-t + ?`
* Bring an application menu:
`Ctrl-t + .`
* Get time and date:
`Ctrl-t + a`
* Clear screen from help cheatsheet or menu:
`Esc`
2018-10-16 22:16:10 +00:00
2018-12-29 21:46:22 +00:00
* Show open windows:
`Ctrl-t + w`
* Close a window:
`Ctrl-t + k`
* Swith back between windows:
`Ctrl-t + Ctrl-t`
* Go to next window:
`Ctrl-t + n`
`Ctrl-t + Space`
* Go to previous window:
`Ctrl-t + p`
2018-10-16 22:16:10 +00:00
2018-12-29 21:46:22 +00:00
* Split screen vertically:
`Ctrl-t + s`
* Split screen horizontally:
`Ctrl-t + S`
* Go to next frame:
`Ctrl-t + Tab`
* Go to previous frame:
`Ctrl-t + Alt-Tab`
* Make a window the only one visible:
`Ctrl-t + Q`
### RATPOISONRC CONFIGURATION FILE
2018-12-29 22:50:21 +00:00
The next custom _".ratpoisonrc"_ file goes under your home directory and can be customized to your needs. It adds several goodies through scripts like an expose-like effect showing all windows on the screen arranged in a mozaic which you can choose by pressing the number from its tag:
2018-10-16 22:16:10 +00:00
```
2018-12-29 21:46:22 +00:00
# text editor
bind e exec gjots2
bind E exec xterm -e elvis
# web browser
bind y exec icecat
# highlight an url in a window and the url is opened in a new tab
bind Y exec icecat -new-tab `$RATPOISON -c getsel`
# MOC as a music player, alsamixer as volume control
bind o exec xterm -e mocp
bind O exec xterm -e alsamixer
# file manager
bind d exec spacefm
bind D exec xterm -e vifm
# mail
bind g exec xterm -e mutt
# IRC
bind h exec xterm -e irssi
# RSS
bind j exec liferea
bind J exec xterm -e newsbeuter
# password manager
bind z exec xterm -e kpcli
# looks for the JDownloader program under the designated path
bind Z exec ~/jd2/JDownloader2
2018-12-30 15:05:17 +00:00
# expose-like switch window by using "Ctrl-t + ,"
2018-12-29 21:46:22 +00:00
bind comma exec ~/bin/expose.pl
# as colon invoke ratpoison commands, semicolon invoke shell commands ("Ctrl-t + ;")
bind semicolon exec
# no startup message announcing what the prefix keys are
startup_message off
# change font, color and position for messages
set font "Fixed-11"
set fgcolor gray
set bgcolor black
set bargravity c
# normal cursor
exec xsetroot -cursor_name left_ptr
# fix java swing, needs wmname from suckless
exec wmname LG3D
# multiple workspaces by using "Alt + FX" (where "FX" is from F1 to F4), needs rpws script
exec rpws init 4 -k
# get rid of the one pixel border around windows
set border 0
2018-10-16 22:16:10 +00:00
```