blob: b629929092d2514e56f47661bcb4e88ae2dbcfd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# This is to catch lock-session from systemd
xss-lock lock &
# No dpms
xset -dpms
# The idle timer is handled elsewhere
echo "enable autolock" > ~/.autolock_status
toggle_autolock
# Set my wallpaper
feh --bg-scale /usr/share/backgrounds/tiles/default_blue.jpg
exec dwm_status &
|