mirror of
https://github.com/basecamp/omarchy.git
synced 2026-01-09 05:10:54 +08:00
12 lines
162 B
Bash
Executable File
12 lines
162 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
echo -e "\e[32mUpdate Firmware\e[0m"
|
|
|
|
if omarchy-cmd-missing fwupdmgr; then
|
|
omarchy-pkg-add fwupd
|
|
fi
|
|
|
|
fwupdmgr refresh
|
|
sudo fwupdmgr update
|