24 lines
753 B
Plaintext
Executable File
24 lines
753 B
Plaintext
Executable File
|
|
apt-get update
|
|
apt-get install --yes --no-install-recommends xserver-xorg xinit xterm blackbox libxcursor1 breeze-cursor-theme wmctrl xdotool
|
|
|
|
# use only white cursors. There were some troubles if the other cursors
|
|
# was left behind, installing gtk apps reverted the cursor from white to gray,
|
|
# so we're going to nuke it to leave only Snow cursors active.
|
|
rm -Rf /usr/share/icons/breeze_cursors
|
|
mv /usr/share/icons/Breeze_Snow /usr/share/icons/breeze_cursors
|
|
|
|
(cd rootcopy && cp --parents -afr * /)
|
|
|
|
cp ../../cleanup /tmp
|
|
# install x11 server utils, apt-get would add cpp dependency, bullshit!
|
|
cd /tmp
|
|
apt-get download x11-xserver-utils
|
|
dpkg -x x11-xserver-utils*.deb /tmp/x11utils
|
|
cd /tmp/x11utils
|
|
cp -aR * /
|
|
|
|
. /tmp/cleanup
|
|
|
|
savechanges /02-xorg.sb
|