2023-12-10 15:40:01 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2023-12-10 15:41:58 +00:00
|
|
|
# Set desktop background
|
2024-07-26 12:18:35 +00:00
|
|
|
command -v feh &1>/dev/null && feh --bg-max $HOME/pix/wallpaper.png &
|
2023-12-10 15:41:58 +00:00
|
|
|
|
|
|
|
# Swap CAPSLOCK and Escape
|
2023-11-23 15:12:02 +00:00
|
|
|
setxkbmap -option caps:swapescape gb &
|
|
|
|
|
2023-12-10 15:41:58 +00:00
|
|
|
# Run compositor
|
2023-11-23 15:12:02 +00:00
|
|
|
picom --daemon
|
|
|
|
|
2023-12-10 15:41:58 +00:00
|
|
|
# Hide mouse cursor when typing
|
2023-11-23 15:12:02 +00:00
|
|
|
xbanish &
|
|
|
|
|
2023-12-10 15:41:58 +00:00
|
|
|
# Run window manager
|
|
|
|
dbus-run-session xmonad
|