blob: 30399ee43285dfc90b7f315c8d559ab1e4803557 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# load host specific Xresources settings (DPI, etc.)
xrdb -merge "$XDG_CONFIG_HOME/xresources/workstation"
# Pipewire setup:
gentoo-pipewire-launcher &
# Autolock the screen after 5 minutes with xautolock (slock)
xautolock -time 5 -locker slock &
# Configure monitor layout (and wallpaper)
"$XDG_CONFIG_HOME/screenlayout/workstation-singlemon" &
# Automatically start dropbox
dropbox start &
|