Fix applet exception handling

This commit is contained in:
Fierelier 2023-11-18 15:16:16 +01:00
parent 7cbf0c873d
commit dca0c53e29
2 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash
set +e
while IFS="" read -r de_module || [ -n "$de_module" ]; do
if [ -x "$de_conf_local/modules.d/$de_module/logoff" ]; then
"$de_conf_local/modules.d/$de_module/logoff" "$de_conf_local" "$de_module"

View File

@ -1,3 +1,2 @@
#!/usr/bin/env bash
set -e
"$de_conf_local/modules.d/$2/run" "$de_conf_local" "$2"