Import XDG env variables into DWL service
This commit is contained in:
parent
0e7225343f
commit
381321a9d9
10
dwl.service
10
dwl.service
@ -7,7 +7,6 @@
|
|||||||
#
|
#
|
||||||
# Start this service with something like this:
|
# Start this service with something like this:
|
||||||
#
|
#
|
||||||
# #
|
|
||||||
# #!/usr/bin/env bash
|
# #!/usr/bin/env bash
|
||||||
#
|
#
|
||||||
# # Start DWL
|
# # Start DWL
|
||||||
@ -16,10 +15,15 @@
|
|||||||
# # Escape slashes in the path
|
# # Escape slashes in the path
|
||||||
# SNAME=$(systemd-escape ${RUNTIME_DIR}.service)
|
# SNAME=$(systemd-escape ${RUNTIME_DIR}.service)
|
||||||
#
|
#
|
||||||
# # Start service blocking. Remove runtime directory upon completion
|
# # Start service blocking. Remove runtime directory upon completion.
|
||||||
|
# # Be sure to import XDG session variables for graphical-session to work
|
||||||
|
# systemctl --user import-environment XDG_SEAT && \
|
||||||
|
# systemctl --user import-environment XDG_SESSION_TYPE && \
|
||||||
|
# systemctl --user import-environment XDG_SESSION_CLASS && \
|
||||||
|
# systemctl --user import-environment XDG_VTNR && \
|
||||||
|
# systemctl --user import-environment XDG_SESSION_ID && \
|
||||||
# systemctl --wait --user start dwl@${SNAME} && \
|
# systemctl --wait --user start dwl@${SNAME} && \
|
||||||
# rm -rf ${RUNTIME_DIR}
|
# rm -rf ${RUNTIME_DIR}
|
||||||
#
|
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=DWL session service
|
Description=DWL session service
|
||||||
BindsTo=graphical-session.target
|
BindsTo=graphical-session.target
|
||||||
|
@ -6,6 +6,12 @@ RUNTIME_DIR=$(mktemp --directory --suffix=.${USER})
|
|||||||
# Escape slashes in the path
|
# Escape slashes in the path
|
||||||
SNAME=$(systemd-escape ${RUNTIME_DIR}.service)
|
SNAME=$(systemd-escape ${RUNTIME_DIR}.service)
|
||||||
|
|
||||||
# Start service blocking. Remove runtime directory upon completion
|
# Start service blocking. Remove runtime directory upon completion.
|
||||||
|
# Be sure to import XDG session variables for graphical-session to work
|
||||||
|
systemctl --user import-environment XDG_SEAT && \
|
||||||
|
systemctl --user import-environment XDG_SESSION_TYPE && \
|
||||||
|
systemctl --user import-environment XDG_SESSION_CLASS && \
|
||||||
|
systemctl --user import-environment XDG_VTNR && \
|
||||||
|
systemctl --user import-environment XDG_SESSION_ID && \
|
||||||
systemctl --wait --user start dwl@${SNAME} && \
|
systemctl --wait --user start dwl@${SNAME} && \
|
||||||
rm -rf ${RUNTIME_DIR}
|
rm -rf ${RUNTIME_DIR}
|
||||||
|
Loading…
Reference in New Issue
Block a user