Switch to Chromium

This commit is contained in:
Michael Bradley 2025-05-18 00:36:49 -04:00
parent e9df645b49
commit d9fc5df080
Signed by: MichaelBradley
SSH key fingerprint: SHA256:BKO2eI2LPsCbQS3n3i5SdwZTAIV3F1lHezR07qP+Ob0
8 changed files with 24 additions and 154 deletions

View file

@ -1,7 +1,7 @@
#!/bin/sh
#
# Firefox doesn't gracefully shutdown when receiving SIGTERM. For example, last
# opened tabs may not be saved. Instead, terminate Firefox by sending the
# Chromium doesn't gracefully shutdown when receiving SIGTERM. For example, last
# opened tabs may not be saved. Instead, terminate Chromium by sending the
# CTRL+q key presses.
#
@ -14,7 +14,7 @@ xdotool key "ctrl+q"
for i in $(seq 1 10)
do
if ! ps | grep "/usr/lib/firefox/firefox" | grep -q -v grep
if ! ps | grep "/usr/lib/chromium/chromium" | grep -q -v grep
then
break
fi