You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
is there a way how to ensure all lemur environments get same additional environment variables?
My idea is to use systemd env generator /usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator (which combines all *.conf files from ~/.config/environment.d/ into stdout) and provide this environment to all.
for sway example it could be done this way:
#! /bin/shset -a
eval$(/usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator)set +a
exec sway
but how to achieve same thing for TTY shell enabled by include_tty_shell = true ?
Maybe related to #196. Custom "tty sessions" could be then just wrapped also into the script like sway above.
The text was updated successfully, but these errors were encountered:
Hi,
is there a way how to ensure all lemur environments get same additional environment variables?
My idea is to use systemd env generator
/usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator
(which combines all*.conf
files from~/.config/environment.d/
into stdout) and provide this environment to all.for sway example it could be done this way:
but how to achieve same thing for TTY shell enabled by
include_tty_shell = true
?Maybe related to #196. Custom "tty sessions" could be then just wrapped also into the script like sway above.
The text was updated successfully, but these errors were encountered: