blob: 3133d014244c62f705e687881477729a56dcf6b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
post_install() {
echo ""
echo "Orbit WiFi/Bluetooth/VPN Manager installed!"
echo ""
echo "Configuration:"
echo " Config file: ~/.config/orbit/config.toml"
echo " Theme file: ~/.config/orbit/theme.toml"
echo ""
echo "Usage:"
echo " orbit - Launch GUI"
echo " orbit show - Show the window"
echo " orbit hide - Hide the window"
echo " orbit daemon - Run as background daemon"
echo " orbit toggle - Toggle daemon visibility"
echo " orbit toggle --tab [wifi|bluetooth|vpn]"
echo " orbit reload-config - Reload config without restarting"
echo " orbit list - List WiFi networks (CLI)"
echo " orbit waybar-status - JSON status for Waybar"
echo ""
echo "Theme customization (~/.config/orbit/theme.toml):"
echo " accent_primary = \"#8B5CF6\" # Primary Accent"
echo " accent_secondary = \"#D97706\" # Secondary Accent"
echo ""
}
post_upgrade() {
post_install
}
|