1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#
# ~/.config/udiskie/config.yml
#
program_options:
tray: true
menu: flat
automount: false
notify: true
# password_cache: 30
# file_manager: xdg-open
# terminal: 'termite -d'
# password_prompt: ["gnome-keyring-query", "get", "{id_uuid}"]
# notify_command: "zenity --info --text '{event}: {device_presentation}'"
notifications:
# Use false, positive number or -1 (use default)
timeout: -1
# Above is global, below is specific.
# device_mounted: 5
# device_unmounted: false
# device_added: false
# device_removed: false
# device_unlocked: -1
# device_locked: -1
# job_failed: -1
# Can be "all" too.
quickmenu_actions: [mount, unmount, unlock, terminal, detach, delete]
notification_actions:
device_mounted: [browse]
device_added: [mount]
icon_names:
media: [drive-removable-media, media-optical]
browse: [document-open, folder-open]
terminal: [terminal, terminator, xfce-terminal]
mount: [udiskie-mount]
unmount: [udiskie-unmount]
unlock: [udiskie-unlock]
lock: [udiskie-lock]
eject: [udiskie-eject, media-eject]
detach: [udiskie-detach]
delete: [udiskie-eject]
quit: [application-exit]
|