27 lines
446 B
Bash
Executable File
27 lines
446 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. ~/.profile
|
|
|
|
xrandr --auto
|
|
xrandr --output HDMI1 --right-of DP1
|
|
xsetroot -solid '#424242'
|
|
xrdb -merge ~/.Xresources
|
|
setxkbmap pl -option ctrl:nocaps
|
|
|
|
xsetroot -cursor_name left_ptr
|
|
export EDITOR=emacsclient
|
|
export VISUAL=emacsclient
|
|
|
|
if which stumpwm > /dev/null; then
|
|
emacsclient --eval nil || emacs --daemon
|
|
exec stumpwm
|
|
fi
|
|
|
|
#export MY_USE_EXWM=t
|
|
#exec emacs
|
|
|
|
dwm-clock &
|
|
exec /usr/local/bin/dwm
|
|
exec /usr/bin/i3
|
|
exec xterm
|