Results 164 comments of tinywrkb

IMO considering Sway is running as a systemd service, sourcing `/etc/profile` is going the wrong way. Here's my soluion: `/usr/lib/systemd/user-environment-generators/10-os` ``` #!/bin/sh # PATH PATH=/usr/bin [ -d /usr/bin/site_perl ] &&...

Oh! And also `~/.config/bash/bashrc` ``` ... ################################################################################ ############################## Extra PATHs ############################## ################################################################################ if [ -z "$BASH_EXTRA_PATHS" ]; then export BASH_EXTRA_PATHS=1 extra_paths=("$HOME/.local/share/flatpak-run-cli/exports/bin" "$HOME/.local/pyvenv/default/bin" "$HOME/.local/poetry/bin") for extra_path in ${extra_paths[@]}; do if [[...

Dup of #1956 and ##1185 is also relevant. This has a better description of the wanted feature so keep this and close at least #1956. I would also like to...

> Mind if I grab some of this text for https://github.com/lentinj/tp-compact-keyboard/tree/master/tp-multi-connect/README.md? Updating that readme is one of the reasons I posted here so I don't mind at all. > just...

[Here's one approach of using gamescope with existing Flatpak applications](https://github.com/tinywrkb/org.freedesktop.Platform.VulkanLayer.GameScope).

IIUC it's `borg -> python-llfuse -> libfuse.so -> /bin/fusermount`. fusermount is setuid binary so forget about running it from the sandbox, it won't work. What might work is replacing fusermount...

It only works because the app adds a flatpak-spwan wrapper. This sounds like something that should be reported to the maintainers of the Flatpak packaging of the app.

Do you have `gsettings-desktop-schemas` installed? It should be a dependency of `xdg-desktop-portal-gtk`. If it's not being pulled-in as a dependency, then it's a Debian bug and should be reported.

Oh! This is pre-Gnome 40.0 release, then you need to install also `gnome-settings-daemon`, as you need the XSETTINGS GSettings schema, which was only moved to `gsettings-desktop-schemas` in release 40.0. The...

Did you try to restart the system? Or at least `xdg-desktop-portal.service` and `xdg-desktop-portal-gtk.service`.