ewm is a tiling window manager for X based on dwm
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ewm/xsession/dwm-start

30 lines
348 B

4 years ago
#!/bin/sh
3 years ago
# Keyring
eval $(gnome-keyring-daemon --start)
export SSH_AUTH_SOCK
4 years ago
# Keyboard layout
setxkbmap se &
# Display settings
$HOME/.screenlayout/layout.sh &
4 years ago
# Compositor
$HOME/.config/picom/launch &
# Background
nitrogen --restore &
3 years ago
4 years ago
# Anti sleep
xset s off &
xset -dpms &
# Loop
while true; do
dwm > /dev/null 2>&1
done
# WM
exec dwm