ego (a.k.a Alter Ego)

Crates.io version Tests status

Do all your games need access to your documents, browser history, SSH private keys?

... No? Just run ego steam!

Ego is a tool to run Linux desktop applications under a different local user. Currently integrates with Wayland, Xorg, PulseAudio and xdg-desktop-portal. You may think of it as xhost for Wayland and PulseAudio. This is done using filesystem ACLs and xhost command.

Disclaimer: DO NOT RUN UNTRUSTED PROGRAMS VIA EGO. However, using ego is more secure than running applications directly under your primary user.

Distro packages

Distribution packages are available for: * Arch Linux (user-contributed package) https://aur.archlinux.org/packages/ego/

After installing the package, add yourself to the ego-users group. After logout and login, the ego command should just work.

(varia/README.md documents recommendations for distro packagers)

Manual setup

Ego aims to come with sane defaults and be easy to set up.

Requirements: * Rust & cargo * libacl.so library (Debian/Ubuntu: libacl1-dev; Fedora: libacl-devel; Arch: acl)

Recommended: (Not needed when using --sudo mode, but some desktop functionality may not work). * machinectl command (Debian/Ubuntu/Fedora: systemd-container; Arch: systemd) * xdg-desktop-portal-gtk (Debian/Ubuntu/Fedora/Arch: xdg-desktop-portal-gtk)

Installation:

  1. Run:

    cargo install ego sudo cp ~/.cargo/bin/ego /usr/local/bin/

  2. Create local user named "ego": [1]

    sudo useradd ego --uid 155 --create-home

  3. That's all, try it:

    ego xdg-open .

[1] No extra groups are needed by the ego user. UID below 1000 hides this user on the login screen.

Avoid password prompt

If using "machinectl" mode (default if available), you need the rather new systemd version >=247 and polkit >=0.106 to do this securely.

Create file /etc/polkit-1/rules.d/50-ego-machinectl.rules, polkit will automatically load it (replace <myname> with your own username):

js polkit.addRule(function(action, subject) { if (action.id == "org.freedesktop.machine1.host-shell" && action.lookup("user") == "ego" && subject.user == "<myname>") { return polkit.Result.YES; } });

sudo mode

For sudo, add the following to /etc/sudoers (replace <myname> with your own username):

<myname> ALL=(ego) NOPASSWD:ALL

Changelog

1.1.1 (2021-03-23)
1.1.0 (2021-03-07)
0.4.1 (2021-01-29)
0.4.0 (2021-01-29)
0.3.1 (2020-03-17)
0.3.0 (2020-03-02)
0.2.0 (2020-02-17)
0.1.0 (2020-02-13)

Initial version

Appendix

Ego is licensed under the MIT License (see the LICENSE file). Ego was created by Marti Raudsepp. Ego's primary website is at https://github.com/intgr/ego

Thanks to Alexander Payne (myrrlyn) for relinquishing the unused "ego" crate name.