mirror of
https://github.com/tuxdotrs/tuxOS.git
synced 2025-07-08 10:46:34 +05:30
initial commit
This commit is contained in:
15
airootfs/etc/skel/.xinitrc
Normal file
15
airootfs/etc/skel/.xinitrc
Normal file
@ -0,0 +1,15 @@
|
||||
|
||||
#!/bin/sh
|
||||
#
|
||||
# ~/.xinitrc
|
||||
#
|
||||
# Executed by startx (run your window manager from here)
|
||||
|
||||
if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
||||
for f in /etc/X11/xinit/xinitrc.d/*; do
|
||||
[ -x "$f" ] && . "$f"
|
||||
done
|
||||
unset f
|
||||
fi
|
||||
|
||||
exec i3
|
Reference in New Issue
Block a user