2023-12-28 04:18:32 -05:00
|
|
|
#!/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"
|
2023-12-28 04:18:32 -05:00
|
|
|
else
|
2024-01-09 20:38:24 -05:00
|
|
|
. "$HOME/.xprofile"
|
2023-12-28 04:18:32 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Set system colors
|
|
|
|
wal -R
|
|
|
|
|
|
|
|
# Start awesome
|
|
|
|
ssh-agent awesome
|