blob: 05b841f35a34cf8e82493d5d515eb6e1991635b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
echo "=== wb-headsetcontrol installed ==="
echo ""
echo "Configuring Waybar..."
bash /usr/share/wb-headsetcontrol/install-waybar-config.sh
echo ""
echo "✓ Installation complete!"
echo ""
echo "Default configuration created at ~/.config/wb-headsetcontrol/config.toml"
echo "Press 'c' in the TUI to configure keybindings and default sidetone."
echo ""
echo "Usage: wb-headset"
}
post_upgrade() {
post_install
}
|