blob: 03bf76da23b955cc7cae6e78482e81e55d9f22dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# This file runs when a DM logs you into a graphical session.
# If you use startx/xinit, this file will also be sourced.
xrandr --output DP-2 --mode 1920x1080 --rate 240
autostart="gentoo-pipewire-launcher setbg dunst mpd xcompmgr unclutter remapd"
for program in $autostart; do
pidof -sx "$program" || "$program" &
done >/dev/null 2>&1
|