I make things: electronics and software and music and stories and all sorts of other things.
- 0 Posts
- 1 Comment
Joined 3 years ago
Cake day: June 14th, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.


You still need X11 or Wayland somehow. I would suggest something that can run in “kiosk” mode. That’s essentially what you want - boot a single app and run that.
If you don’t care about wayland, just install xorg-xinit (since you said Arch) and put this in
~/.xinitrc:exec steam -bigpictureRun startx to launch it on its own. There may be other dependencies you need for steam or for games, but you don’t need a whole DE.
If you want, you can even enable auto-login and then set up auto-start by adding this to your
~/.bashrc(or whatever shell you use):if [[ -z $DISPLAY ]]; then startx fi