mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-06 04:20:23 +00: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
|