Skip to content

Instantly share code, notes, and snippets.

@Ethorbit
Ethorbit / switch-session-user.sh
Last active April 2, 2024 13:49
Switch Steam Deck desktop user with a single sudo command.
#!/bin/bash
user="$1"
if ! [[ `id "$user" 2> /dev/null` ]]; then
echo "Not a valid user" 1>&2 && exit 1
fi
if [[ `echo "$user" | grep "|"` ]]; then
echo "Username cannot have '|'" 1>&2 && exit 1
fi
@ur4ltz
ur4ltz / i3-cheat-sheet.md
Created August 14, 2020 07:46 — forked from schuerg/i3-cheat-sheet.md
[i3/sway cheatsheet] List of key bindings for i3wm/swaywm #linux #tiling-wm #desktop #cheat-sheet