In this video we discover the awesome power that a custom desktop session can give the Linux user over their computing experience. Create a custom kiosk, or even boot directly into a virtual machine.
NOTES:
sudo nano /usr/share/xsessions/Debian.desktop
********************************************
[Desktop Entry]
Encoding=UTF-8
Name=Debian OS
Comment=
Exec=/usr/bin/debian-session
Type=Application
********************************************
wmctrl -m (this will show what window manager you're using)
sudo nano /usr/bin/debian-session
********************************************
#! /usr/bin/env bash
xsetroot -solid "#000000" &
openbox &
virtualbox --startvm Debian --fullscreen &
********************************************
sudo chmod +x /usr/bin/debian-session
Comments