aboutsummaryrefslogtreecommitdiff
path: root/src/usr/bin/myautomount-trayicon
blob: 7760a56b837962a10f1444dcd61320d24aadd762 (plain)
1
2
3
4
5
6
7
#!/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}"
${MYA_PREFIX}/usr/libexec/myautomount/myautomount-trayicon.py
bgstack15