9 lines
181 B
Text
9 lines
181 B
Text
|
#!/bin/sh
|
||
|
if [ -f "${XDG_CONFIG_HOME:-$HOME/.config}/x11/xprofile" ]; then
|
||
|
. "${XDG_CONFIG_HOME:-$HOME/.config}/x11/xprofile"
|
||
|
else
|
||
|
. "$HOME/.xprofile"
|
||
|
fi
|
||
|
wal -R
|
||
|
ssh-agent awesome
|