dobu/config-default.sh
Peter Cai b7b5a61286 Implement allowlisting for direct access to Wayland / X11
Some applications do not work well with Sommelier especially under Sway.
Rather than having them unusable, I'd rather have something that
"almost" works.
2024-04-22 21:21:09 -04:00

22 lines
891 B
Bash

# Where should the home directories used in containers be persisted
HOMEDIR_STORAGE=$HOME/.local/share/dobu/homedir
# Whether btrfs subvolumes should be used for homes instead of
# normal subdirectories
HOMEDIR_IS_BTRFS=false
# Array of app containers that are granted full /dev/input access
DEV_INPUT_APP_ALLOWLIST=()
# Array of devices that will be passed through to apps with input access
# If undefined, all input devices will be passed through
# Note that some devices expose multiple /dev/input interfaces,
# and all of them have to be in this allowlist to grant access
#DEV_INPUT_DEVICE_ALLOWLIST=(
# js0
# # or use device IDs -- in case device paths change across reboots or hotplug
# by-id/usb-XXX-xxx
#)
# Array of app containers that are granted direct Wayland / X11 access
# apps not in this list will be graphically isolated using Sommelier
DISPLAY_SERVER_APP_ALLOWLIST=()