diff --git a/Manual.org b/Manual.org index 1f0a045..ccc2b74 100644 --- a/Manual.org +++ b/Manual.org @@ -5287,6 +5287,7 @@ udiskie & ***** config.yml #+BEGIN_SRC shell :tangle roles/yavdr-desktop/templates/udiskie/config.yml.j2 :mkdirp yes :shebang #!/bin/bash {{ ansible_managed | comment }} + program_options: tray: false # [bool] Enable the tray icon. "auto" menu: flat # ["flat" | "nested"] Set the @@ -5363,6 +5364,7 @@ esac ***** udiskie snippet for commands.conf #+BEGIN_SRC shell :tangle roles/yavdr-desktop/templates/udiskie/umount_all.j2 :mkdirp yes :shebang #!/bin/bash {{ ansible_managed | comment }} + {{ "Safely remove usb mass storage" | translate }} : echo 'svdrpsend mesg "$(udiskie-umount -a 2>&1 | grep -o "Error unmounting.*")"' | at now #+END_SRC diff --git a/roles/yavdr-desktop/templates/udiskie/config.yml.j2 b/roles/yavdr-desktop/templates/udiskie/config.yml.j2 index 0572b42..95cfe7d 100755 --- a/roles/yavdr-desktop/templates/udiskie/config.yml.j2 +++ b/roles/yavdr-desktop/templates/udiskie/config.yml.j2 @@ -1,5 +1,6 @@ #!/bin/bash {{ ansible_managed | comment }} + program_options: tray: false # [bool] Enable the tray icon. "auto" menu: flat # ["flat" | "nested"] Set the diff --git a/roles/yavdr-desktop/templates/udiskie/umount_all.j2 b/roles/yavdr-desktop/templates/udiskie/umount_all.j2 index eab1e28..cd1803a 100755 --- a/roles/yavdr-desktop/templates/udiskie/umount_all.j2 +++ b/roles/yavdr-desktop/templates/udiskie/umount_all.j2 @@ -1,3 +1,4 @@ #!/bin/bash {{ ansible_managed | comment }} + {{ "Safely remove usb mass storage" | translate }} : echo 'svdrpsend mesg "$(udiskie-umount -a 2>&1 | grep -o "Error unmounting.*")"' | at now