aboutsummaryrefslogtreecommitdiff
path: root/src/usr/bin/myautomount-trayicon
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-10-02 13:50:31 -0400
committerB Stack <bgstack15@gmail.com>2020-10-02 13:50:31 -0400
commita96ffb6b5d96d21be1d5bfa8181d3aeb71da547c (patch)
treec0e604df0fe171491a9de9a0e59f4b8c8ff00c7b /src/usr/bin/myautomount-trayicon
parentupdate todo (diff)
downloadmyautomount-a96ffb6b5d96d21be1d5bfa8181d3aeb71da547c.tar.gz
myautomount-a96ffb6b5d96d21be1d5bfa8181d3aeb71da547c.tar.bz2
myautomount-a96ffb6b5d96d21be1d5bfa8181d3aeb71da547c.zip
fix for devuan
apparently UID is not transmitted everywhere, and also add some dependencies.
Diffstat (limited to 'src/usr/bin/myautomount-trayicon')
-rwxr-xr-xsrc/usr/bin/myautomount-trayicon1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/usr/bin/myautomount-trayicon b/src/usr/bin/myautomount-trayicon
index d6ccc9f..7760a56 100755
--- a/src/usr/bin/myautomount-trayicon
+++ b/src/usr/bin/myautomount-trayicon
@@ -1,5 +1,6 @@
#!/bin/sh
# Part of myautomount project
+test -z "${UID}" && export UID="$( $( which id ) -u "${USER}" )"
. ${MYA_PREFIX}/etc/myautomount.conf
MYA_USER_CFG="${XDG_CONFIG_HOME:-${HOME}/.config}/myautomount.conf"
test -r "${MYA_USER_CFG}" && . "${MYA_USER_CFG}"
bgstack15