mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
* Add firmware update script and include in update process * typo * type 2 * add sudo * Add firmware update option to update menu * Remove firmware update command from update process * Lazy-install firmware updater * Move option down and change icon * Only lazy install if missing --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
12 lines
161 B
Bash
Executable File
12 lines
161 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
echo -e "\e[32mUpdate Firmare\e[0m"
|
|
|
|
if omarchy-cmd-missing fwupdmgr; then
|
|
omarchy-pkg-add fwupd
|
|
fi
|
|
|
|
fwupdmgr refresh
|
|
sudo fwupdmgr update
|