voidrice/.config/x11/xprofile
2021-11-23 21:44:41 +02:00

17 lines
415 B
Bash
Executable File

#!/bin/sh
# This file runs when a DM logs you into a graphical session.
# If you use startx/xinit like a Chad, this file will also be sourced.
# Set DPI
xrandr --dpi 96 &
autostart="remaps unclutter"
for program in $autostart; do
pidof -s "$program" || setsid -f "$program"
done >/dev/null 2>&1
# Ensure that xrdb has finished running before moving on to start the WM/DE.
[ -n "$xrdbpid" ] && wait "$xrdbpid"