summaryrefslogtreecommitdiffstatshomepage
path: root/sh/.config/profile.d/10-systemd.sh
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-02-10 19:01:29 -0600
committerToby Vincent <tobyv13@gmail.com>2023-02-10 19:54:38 -0600
commitd8ff2ceef0d5fd7df11aa5c5dc7f821ca03c9caa (patch)
tree352414da832aae43a8ba3be02d0d65c9ce3bcbfa /sh/.config/profile.d/10-systemd.sh
parent7ea36d849857e1d31a1f4ddf0b6d41665e670be1 (diff)
fix: fix quoting bug in systemd env gen
Diffstat (limited to 'sh/.config/profile.d/10-systemd.sh')
-rw-r--r--sh/.config/profile.d/10-systemd.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/.config/profile.d/10-systemd.sh b/sh/.config/profile.d/10-systemd.sh
index e03f8ba..e82d7e0 100644
--- a/sh/.config/profile.d/10-systemd.sh
+++ b/sh/.config/profile.d/10-systemd.sh
@@ -1,3 +1,3 @@
#!/bin/sh
-export "$(run-parts /usr/lib/systemd/user-environment-generators | xargs)"
+export $(run-parts /usr/lib/systemd/user-environment-generators | xargs)