diff options
| author | navewindre <boneyaard@gmail.com> | 2026-02-16 03:14:39 +0100 |
|---|---|---|
| committer | navewindre <boneyaard@gmail.com> | 2026-02-16 03:14:39 +0100 |
| commit | 8920ff4dc02bb03986e89998ab6870e9a8fff4c0 (patch) | |
| tree | 79d700a2fd9288e29afd35f3d624b9f24848f8ff | |
| parent | 63321658035a6ad9f16ee80f27655d82316702ff (diff) | |
a
| -rwxr-xr-x | etc/X11/xinit/xinitrc.openbox-session (renamed from xinitrc.openbox-session) | 0 | ||||
| -rw-r--r-- | etc/X11/xorg.conf.d/10-dummy.conf | 28 | ||||
| -rwxr-xr-x | etc/rc.d/rc.local | 26 | ||||
| -rwxr-xr-x | etc/rc.d/rc.splash | 15 |
4 files changed, 69 insertions, 0 deletions
diff --git a/xinitrc.openbox-session b/etc/X11/xinit/xinitrc.openbox-session index 42431b7..42431b7 100755 --- a/xinitrc.openbox-session +++ b/etc/X11/xinit/xinitrc.openbox-session diff --git a/etc/X11/xorg.conf.d/10-dummy.conf b/etc/X11/xorg.conf.d/10-dummy.conf new file mode 100644 index 0000000..5b22188 --- /dev/null +++ b/etc/X11/xorg.conf.d/10-dummy.conf @@ -0,0 +1,28 @@ +Section "Device" + Identifier "DummyDevice" + Driver "dummy" + VideoRam 256000 +EndSection + +Section "Monitor" + Identifier "DummyMonitor" + HorizSync 28-80 + VertRefresh 48-75 +EndSection + +Section "Screen" + Identifier "DummyScreen" + Device "DummyDevice" + Monitor "DummyMonitor" + DefaultDepth 24 + SubSection "Display" + Depth 24 + Modes "1280x720" + EndSubSection +EndSection + +Section "InputClass" + Identifier "ignore pointer" + MatchIsPointer "on" + Option "Ignore" "true" +EndSection diff --git a/etc/rc.d/rc.local b/etc/rc.d/rc.local new file mode 100755 index 0000000..3d70d18 --- /dev/null +++ b/etc/rc.d/rc.local @@ -0,0 +1,26 @@ +#!/bin/bash +# +# /etc/rc.d/rc.local: Local system initialization script. +# +# Put any local startup commands in here. Also, if you have +# anything that needs to be run at shutdown time you can +# make an /etc/rc.d/rc.local_shutdown script and put those +# commands in there. + +if [[ -x /etc/rc.d/rc.libvirt ]]; then + /etc/rc.d/rc.libvirt start +fi + +if [[ -x /lib/ufw/ufw-init ]]; then + echo "starting ufw..." + /lib/ufw/ufw-init start +fi + +echo "loading uhid..." +modprobe uhid +echo "loading ntsync module..." +modprobe ntsync + +if [[ -x /etc/rc.d/rc.splash ]]; then + /etc/rc.d/rc.splash +fi diff --git a/etc/rc.d/rc.splash b/etc/rc.d/rc.splash new file mode 100755 index 0000000..50b2a32 --- /dev/null +++ b/etc/rc.d/rc.splash @@ -0,0 +1,15 @@ +#!/bin/bash + +cat << EOL +░░░░█▐▄▒▒▒▌▌▒▒▌░▌▒▐▐▐▒▒▐▒▒▌▒▀▄▀▄░ +░░░█▐▒▒▀▀▌░▀▀▀░░▀▀▀░░▀▀▄▌▌▐▒▒▒▌▐░ +░░▐▒▒▀▀▄▐░▀▀▄▄░░░░░░░░░░░▐▒▌▒▒▐░▌ +░░▐▒▌▒▒▒▌░▄▄▄▄█▄░░░░░░░▄▄▄▐▐▄▄▀░░ +░░▌▐▒▒▒▐░░░░░░░░░░░░░▀█▄░░░░▌▌░░░ +▄▀▒▒▌▒▒▐░░░░░░░▄░░▄░░░░░▀▀░░▌▌░░░ +▄▄▀▒▐▒▒▐░░░░░░░▐▀▀▀▄▄▀░░░░░░▌▌░░░ +░░░░█▌▒▒▌░░░░░▐▒▒▒▒▒▌░░░░░░▐▐▒▀▀▄ +░░▄▀▒▒▒▒▐░░░░░▐▒▒▒▒▐░░░░░▄█▄▒▐▒▒▒ +▄▀▒▒▒▒▒▄██▀▄▄░░▀▄▄▀░░▄▄▀█▄░█▀▒▒▒▒ +EOL + |
