Advertisement
Guest User

Untitled

a guest
Apr 6th, 2024
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. xinitrc:
  2.  
  3. if [ -f "${XDG_CONFIG_HOME:-$HOME/.config}/x11/xprofile" ]; then
  4. . "${XDG_CONFIG_HOME:-$HOME/.config}/x11/xprofile"
  5. else
  6. . "$HOME/.xprofile"
  7. fi
  8.  
  9. ssh-agent dwm
  10.  
  11.  
  12.  
  13. xprofile:
  14.  
  15. xrandr --dpi 96
  16. setbg &
  17.  
  18. autostart="mpd xcompmgr dunst unclutter pipewire remapd"
  19.  
  20. for program in $autostart; do
  21. pidof -sx "$program" || "$program" &
  22. done >/dev/null 2>&1
  23.  
  24. [ -n "$xrdbpid" ] && wait "$xrdbpid"
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement