blob: afbc7769df0109660aec98492e0f27ebfba8adab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
# 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 &
|