mirror of
https://github.com/amiwm/amiwm.git
synced 2026-04-14 11:04:18 +00:00
Initial commit!
This commit is contained in:
18
Xinitrc.in
Normal file
18
Xinitrc.in
Normal 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
|
||||
Reference in New Issue
Block a user