15 lines
457 B
Bash
Executable File
15 lines
457 B
Bash
Executable File
#!/bin/sh
|
|
# $OpenBSD: Xsetup_0.in,v 1.1 2021/08/30 15:38:27 matthieu Exp $
|
|
|
|
prefix="/usr/X11R6"
|
|
exec_prefix="${prefix}"
|
|
|
|
#$xsetroot -solid dimgrey
|
|
|
|
#${exec_prefix}/bin/xsetroot -fg \#6f6f6f -bg \#bfbfbf -bitmap ${prefix}/include/X11/bitmaps/root_weave
|
|
|
|
#${exec_prefix}/bin/#xconsole -geometry 480x130-0-0 -daemon -notify -verbose -fn fixed -exitOnFail
|
|
|
|
xrandr --output default --dpi 96
|
|
xsetroot -solid $(xrdb -query | awk '/xroot.background/ { print $2 }')
|