Skip to content

Commit

Permalink
fix shellcheck errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jens-maus committed Sep 27, 2024
1 parent 54f3c5a commit 0858e02
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/qutselect_connect_app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ if [[ "${app}" == "zoom" ]]; then
yad_pid=$!

# remove all previous data
rm -rf ${HOME}/.zoom ${HOME}/.config/zoom*
rm -rf "${HOME}/.zoom" "${HOME}/.config/zoom.conf" "${HOME}/.config/zoomus.conf"

/opt/zoom/ZoomLauncher &
kill -9 ${yad_pid}
Expand All @@ -86,8 +86,9 @@ elif [[ "${app}" == "chrome" ]] || [[ "${app}" == "bbb" ]]; then
else
yad --center --text="Starting chrome..." --no-buttons &
yad_pid=$!

# remove all previous data
rm -rf ${HOME}/.config/chrome
rm -rf "${HOME}/.config/chrome"

# start chromium in kiosk mode
if [[ "${app}" == "bbb" ]]; then
Expand Down

0 comments on commit 0858e02

Please sign in to comment.