-
-
Notifications
You must be signed in to change notification settings - Fork 262
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
48 additions
and
9 deletions.
There are no files selected for viewing
8 changes: 0 additions & 8 deletions
8
system_files/desktop/shared/usr/etc/ublue-update.d/user/99-bazzite-arch-user-update.sh
This file was deleted.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
system_files/desktop/shared/usr/libexec/topgrade/adwaita-for-steam-update
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/bash | ||
shopt -s nullglob | ||
|
||
if [ -d "$HOME/homebrew/themes/Adwaita-for-Steam" ]; then | ||
cd "$HOME/homebrew/themes/Adwaita-for-Steam" | ||
git pull | ||
fi | ||
|
||
exit 0 |
20 changes: 20 additions & 0 deletions
20
system_files/desktop/shared/usr/libexec/topgrade/mozilla-gnome-theme-update
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/bash | ||
shopt -s nullglob | ||
|
||
# Flatpak Firefox | ||
for firefox_gnome_theme in "$HOME/.var/app/org.mozilla.firefox/.mozilla/firefox/"*".default"*"/chrome/firefox-gnome-theme/"; do | ||
if [ -d "$firefox_gnome_theme" ]; then | ||
cd "$firefox_gnome_theme" | ||
git pull | ||
fi | ||
done | ||
|
||
# Flatpak Thunderbird | ||
for thunderbird_gnome_theme in "$HOME/.var/app/org.mozilla.Thunderbird/.thunderbird/"*".default"*"/chrome/thunderbird-gnome-theme/"; do | ||
if [ -d "$thunderbird_gnome_theme" ]; then | ||
cd "$thunderbird_gnome_theme" | ||
git pull | ||
fi | ||
done | ||
|
||
exit 0 |
14 changes: 14 additions & 0 deletions
14
system_files/desktop/shared/usr/share/ublue-os/just/10-update.just
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# vim: set ft=make : | ||
|
||
alias upgrade := update | ||
|
||
# Update system, flatpaks, and containers all at once | ||
update: | ||
/usr/bin/topgrade --config /usr/share/ublue-os/topgrade/topgrade.toml | ||
|
||
# Update device firmware | ||
[no-exit-message] | ||
update-firmware: | ||
/usr/bin/fwupdmgr refresh --force | ||
/usr/bin/fwupdmgr get-updates | ||
/usr/bin/fwupdmgr update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters