summaryrefslogtreecommitdiff
path: root/.config/x11/xprofile
blob: 5a3a21cc9a0d5c4fa572ab23b289c74087c79b6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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-4 --mode 1920x1080 --rate 240
setbg &
slstatus &

autostart="dunst mpd xcompmgr unclutter remapd"
#gentoo-pipewire-launcher
for program in $autostart; do
	pidof -sx "$program" || "$program" &
done >/dev/null 2>&1