Você pode colocar personalizações em um arquivo chamado ~/.xinitrc
. Isso serve para quando você inicia o Xorg com o comando startx
.
Se você estiver executando um gerenciador de exibição, precisará de um script ~/.xsession
.
De acordo com a página wiki do Ubuntu CustomXSession , você pode apenas ligar simbolicamente esses dois arquivos.
Como exemplo, aqui está meu ~/.xinitrc
;
#!/bin/sh
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/usr/X11R6/lib/X11/xinit/.Xresources
sysmodmap=/usr/X11R6/lib/X11/xinit/.Xmodmap
export XCURSOR_THEME=redglass
# Set language stuff
export LANG=en_US.UTF-8
# merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f $userresources ]; then
xrdb -merge $userresources
fi
# set mouse accelleration parameters
xset m 3/1 4
# set keyboard repeat rate
xset r rate 200 60
# Allow local access to the X server.
xhost +local:
# Load my customizations.
if [ -f $usermodmap ]; then
xmodmap $usermodmap
fi
setxkbmap -option compose:rwin
pulseaudio --start
xstdcmap -best
Esetroot ~/.backgrounds/endurance_crater1920.png
# start the window manager. This _must_ be the last command
# and it _must_ be run with exec!
exec i3
Você pode adicionar comandos a este arquivo antes de executar o gerenciador de janelas. Você pode colocar os comandos em segundo plano adicionando '&' para eles.