blob: 77838ecca5e6fe0beb2bad0adea6a12fcb67592c (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
post_install() {
echo ""
echo " ╔════════════════════════════════════════════════════════════╗"
echo " ║ HyprCandy+ Installer Ready ║"
echo " ╚════════════════════════════════════════════════════════════╝"
echo ""
echo " ── Getting Started ─────────────────────────────────────────"
echo ""
echo " 1. Start a Hyprland session:"
echo " • From TTY: hyprland"
echo " • Via display manager: select Hyprland at login"
echo ""
echo " 2. Open a terminal (from within Hyprland):"
echo " SUPER + Q → launches Kitty"
echo ""
echo " 3. Run the installer:"
echo " hc-install"
echo ""
echo " ── Note ────────────────────────────────────────────────────"
echo ""
echo " hc-install works best when run from within a Hyprland session"
echo " — some steps (bar, wallpaper, theming, display-manager setup)"
echo " require a running compositor to complete properly without"
echo " requiring logging in multiple times"
echo ""
echo " ── Licence ─────────────────────────────────────────────────"
echo ""
echo " You will need a valid HyprCandy+ licence key."
echo " Get one at: https://mirukai.gumroad.com/l/mmnrfq"
echo ""
}
post_upgrade() {
post_install
}
post_remove() {
echo ""
echo " HyprCandy+ installer removed."
echo " Your existing HyprCandy+ installation is unaffected."
echo " Use the bar's updates popup to manage future updates."
echo ""
}
|