#!/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. xrandr --dpi "${DISPLAY_DPI:-96}" xrdb "${XDG_CONFIG_HOME:-$HOME/.config}/x11/xresources" & xrdbpid=$! display_script="${XDG_DATA_HOME:-$HOME/.local/share}/xrandr/$(hostname | cut -d. -f1)" ([ -e "$display_script" ] && $display_script) || xrandr --auto autostart="picom" for program in $autostart; do which "$program" || continue pidof -s "$program" || "$program" & done >/dev/null 2>&1 # Ensure that xrdb has finished running before moving on to start the WM/DE. [ -n "$xrdbpid" ] && wait "$xrdbpid" # Source .config/shell/profile profile_path="${XDG_CONFIG_HOME:-$HOME/.config}/shell/profile" [ -f "$profile_path" ] && . "$profile_path"