arch minimal add chromium tweak

This commit is contained in:
[yuri]
2025-12-11 10:49:43 +01:00
parent f1677ba629
commit 25722a7608

View File

@@ -127,6 +127,20 @@ else
say_yellow "${DOWNLOAD_NAME} Nerd Font is already installed in $FONT_DIR. Skipping installation." say_yellow "${DOWNLOAD_NAME} Nerd Font is already installed in $FONT_DIR. Skipping installation."
fi fi
# allow Chromium login with Google Account
if [[ -f ~/.config/chromium-flags.conf ]]; then
CONF=~/.config/chromium-flags.conf
grep -qxF -- "--oauth2-client-id=77185425430.apps.googleusercontent.com" "$CONF" ||
echo "--oauth2-client-id=77185425430.apps.googleusercontent.com" >>"$CONF"
grep -qxF -- "--oauth2-client-secret=OTJgUOQcT7lO7GsGZq2G4IlT" "$CONF" ||
echo "--oauth2-client-secret=OTJgUOQcT7lO7GsGZq2G4IlT" >>"$CONF"
echo "Now you can login to your Google Account in Chromium."
fi
# Enable basic services # Enable basic services
#sudo systemctl enable chronyd.service #sudo systemctl enable chronyd.service
sudo systemctl enable fstrim.timer sudo systemctl enable fstrim.timer