Initial commit!

This commit is contained in:
reddsik
2017-03-26 13:00:19 +02:00
commit c85716f60e
90 changed files with 28790 additions and 0 deletions

18
Xinitrc.in Normal file
View File

@@ -0,0 +1,18 @@
#!/bin/ksh
# AmiWM startup script
xrdb $OPENWINHOME/lib/Xdefaults # Load Default X11 resource database
if [ -f $HOME/.Xdefaults ]; then
xrdb -merge $HOME/.Xdefaults # Load Users X11 resource database
fi
xsetroot -solid black
@bindir@/amiwm & wmpid=$!
if [ -x $HOME/.amiwm-init ]; then
$HOME/.amiwm-init # Custom amiwm tools
else
@AMIWM_HOME@/amiwm-init # Default amiwm tools
fi
wait $wmpid # Wait for wm (key client) to exit