mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-03-18 18:07:45 +01:00
11 lines
314 B
Plaintext
11 lines
314 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
#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
|
||
|
|
||
|
exec i3
|