mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-03-26 04:57:45 +01:00
15 lines
367 B
Bash
15 lines
367 B
Bash
#!/bin/sh
|
|
|
|
xrandr --auto
|
|
#adding ressources
|
|
[ -f "$HOME/.config/xorg/xprofile" ] && . "$HOME/.config/xorg/xprofile"
|
|
[ -f "$HOME/.config/xorg/Xdefaults" ] && xrdb -merge "$HOME/.config/xorg/Xdefaults"
|
|
[ -f "$HOME/.config/xorg/Xpcspec" ] && xrdb -merge "$HOME/.config/xorg/Xpcspec"
|
|
|
|
xterm -geometry 80x24+10+10 -fn 10x20
|
|
|
|
setbg
|
|
while :; do
|
|
ssh-agent dwm || break
|
|
done
|