19 lines
482 B
Bash
19 lines
482 B
Bash
#!/bin/sh
|
|
# XDM Xsetup script - runs before the login screen appears
|
|
# Use this to customize the display before login
|
|
|
|
# Set background color (Dracula background)
|
|
xsetroot -solid "#282A36"
|
|
|
|
# Optionally set a background image with feh
|
|
# if [ -f "$HOME/.config/wallpaper.jpg" ]; then
|
|
# feh --bg-scale "$HOME/.config/wallpaper.jpg"
|
|
# fi
|
|
|
|
# Start xclock in the corner (optional)
|
|
# xclock -digital -update 1 -geometry 150x50-10+10 &
|
|
|
|
# Disable screen blanking
|
|
xset s off
|
|
xset -dpms
|