Doors/configs/x11/xinitrc

21 lines
339 B
Text
Raw Permalink Normal View History

#!/bin/sh
# startx/xinit run this script
# Run xprofile
if [ -f "${XDG_CONFIG_HOME:-$HOME/.config}/x11/xprofile" ]; then
2024-01-09 20:38:24 -05:00
. "${XDG_CONFIG_HOME:-$HOME/.config}/x11/xprofile"
else
2024-01-09 20:38:24 -05:00
. "$HOME/.xprofile"
fi
# Set system colors
wal -R
2025-02-09 19:19:12 -05:00
# Optimus
[ -x "$(command -v prime-offload)" ] && prime-offload
# Start awesome
ssh-agent awesome
2025-02-09 19:19:12 -05:00