aboutsummaryrefslogtreecommitdiff
path: root/src/etc
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-09-26 21:40:46 -0400
committerB Stack <bgstack15@gmail.com>2020-09-26 21:40:46 -0400
commit5c3a8832ee7e4cd4c613d2af947ddfff9aac8d06 (patch)
tree4ef427579548a07d78834984e5dc1110f962b0ae /src/etc
parentadd xdg autostart, and hide_when_no_media config opt (diff)
downloadmyautomount-5c3a8832ee7e4cd4c613d2af947ddfff9aac8d06.tar.gz
myautomount-5c3a8832ee7e4cd4c613d2af947ddfff9aac8d06.tar.bz2
myautomount-5c3a8832ee7e4cd4c613d2af947ddfff9aac8d06.zip
add license texts, add user config to trayicon
Diffstat (limited to 'src/etc')
-rw-r--r--src/etc/myautomount.conf6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/etc/myautomount.conf b/src/etc/myautomount.conf
index eef2ca8..a64dace 100644
--- a/src/etc/myautomount.conf
+++ b/src/etc/myautomount.conf
@@ -19,3 +19,9 @@ export AUTOMOUNT_BASEDIR=/run/user/${UID}/automedia
# where the filesystems get mounted to. This location should not be
# controlled by anything else.
export AUTOMOUNT_BROWSEDIR=/browse
+
+# These can be modified per-user in ${XDG_CONFIG_HOME}/myautomount.conf
+export showmount=1 # Default: 1, show "MOUNTED" for each drive that is currently mounted
+export skip_sd_without_partitions=1 # Default: 1, skip sdb sdc, etc. # NOT IMPLEMENTED YET
+export only_update_on_menuitem=0 # Default: 0, disable the mouseover poll. If 1, it breaks showmount=1
+export hide_when_no_media=1 # Default: 1, stay hidden until some removable media is discovered
bgstack15