aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sh/.config/profile.d
diff options
context:
space:
mode:
Diffstat (limited to 'sh/.config/profile.d')
-rw-r--r--sh/.config/profile.d/10-systemd.sh2
-rw-r--r--sh/.config/profile.d/30-vivid.sh2
2 files changed, 2 insertions, 2 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)
diff --git a/sh/.config/profile.d/30-vivid.sh b/sh/.config/profile.d/30-vivid.sh
index 4090d39..362c155 100644
--- a/sh/.config/profile.d/30-vivid.sh
+++ b/sh/.config/profile.d/30-vivid.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-if [ -n "$BASE16_DEFAULT_THEME" ] && command -v vivid 2>/dev/null; then
+if [ -n "$BASE16_DEFAULT_THEME" ] && command -v vivid 1>/dev/null; then
LS_COLORS="$(vivid generate "$BASE16_DEFAULT_THEME" 2>/dev/null)"
export LS_COLORS
fi