17 lines
295 B
Bash
17 lines
295 B
Bash
#!/bin/sh
|
|
|
|
# Set desktop background
|
|
command -v feh &1>/dev/null && feh --bg-max $HOME/pix/wallpaper.png &
|
|
|
|
# Swap CAPSLOCK and Escape
|
|
setxkbmap -option caps:swapescape gb &
|
|
|
|
# Run compositor
|
|
picom --daemon
|
|
|
|
# Hide mouse cursor when typing
|
|
xbanish &
|
|
|
|
# Run window manager
|
|
dbus-run-session xmonad
|