Files
provision/config/xinitrc
2025-11-30 22:44:33 -08:00

26 lines
432 B
Bash
Executable File

#!/bin/sh
# X11 initialization script
# Load X resources
if [ -f "$HOME/.Xresources" ]; then
xrdb -merge "$HOME/.Xresources"
fi
# Set DPI scaling (96 = 1x, 144 = 1.5x, 192 = 2x)
xrandr --dpi 144
# Set keyboard repeat rate
xset r rate 200 30
# Disable screen blanking
xset s off
xset -dpms
# Start terminal emulator in background
if command -v xterm >/dev/null 2>&1; then
xterm &
fi
# Start TWM window manager
exec twm