mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-06 12:39:35 +02: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
|