mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
13 lines
331 B
Bash
13 lines
331 B
Bash
echo "Remove Wiremix audio mixer"
|
|
|
|
if omarchy-pkg-present wiremix; then
|
|
omarchy-pkg-drop wiremix
|
|
fi
|
|
|
|
rm -rf "$HOME/.config/wiremix"
|
|
rm -f "$HOME/.local/share/applications/wiremix.desktop"
|
|
|
|
if omarchy-cmd-present update-desktop-database; then
|
|
update-desktop-database "$HOME/.local/share/applications" >/dev/null 2>&1 || true
|
|
fi
|