mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
Add hardware restart menu to unblock wifi/bluetooth/audio if stuck
This commit is contained in:
10
bin/omarchy-restart-amd-audio
Executable file
10
bin/omarchy-restart-amd-audio
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
CARD=$(pactl list cards | grep -B20 "Family 17h/19h" | grep "Name: " | awk '{print $2}')
|
||||
|
||||
if [[ -n $CARD ]]; then
|
||||
pactl set-card-profile "$CARD" "HiFi (Mic1, Mic2, Speaker)" 2>/dev/null
|
||||
else
|
||||
echo "AMD audio card not found"
|
||||
exit 1
|
||||
fi
|
||||
Reference in New Issue
Block a user