sudo apt install \
  openbox lxpanel wmctrl \
  rxvt-unicode gmrun xterm arandr xinit \
  rtkit lxterminal firefox-esr

# See Openbox and lxterminal ~/.config files.

# To autologin at boot:
sudo mkdir -p /etc/systemd/system/getty@tty1.service.d
sudo vim /etc/systemd/system/getty@tty1.service.d/override.conf

[Service]
Type=simple
ExecStart=
# Set debian to username you want to log in as
ExecStart=-/sbin/agetty --autologin debian --noclear %I 38400 linux

# as user add to .profile
vim ~/.profile

# start X
if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/tty1 ]]; then
. startx
logout
fi

