blob: 64033fd28fcf9d67ecbc5cab75440672bbbba488 (
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
|
post_install() {
echo ""
echo "==> Omarchy Delta Theme Sync installed!"
echo ""
echo "🚀 To complete setup, run:"
echo " omarchy-delta-theme-sync setup"
echo ""
echo " This will:"
echo " • Install delta theme script to ~/.local/bin/"
echo " • Add hook to Omarchy theme-set"
echo " • Apply current theme to delta"
echo ""
echo "Then change your Omarchy theme and watch delta follow along!"
echo ""
}
post_upgrade() {
echo ""
echo "==> Omarchy Delta Theme Sync updated!"
echo ""
echo " To complete the update, run:"
echo " omarchy-delta-theme-sync setup"
echo ""
echo " This will:"
echo " • Update the delta theme script"
echo " • Ensure hook is properly configured"
echo " • Re-apply current theme"
echo ""
}
post_remove() {
echo ""
echo "==> Omarchy Delta Theme Sync removed."
echo ""
echo "Note: Run 'omarchy-delta-theme-sync uninstall' before removing"
echo " the package to clean up user files:"
echo " • ~/.local/bin/omarchy-delta-theme-apply"
echo " • Hook in ~/.config/omarchy/hooks/theme-set"
echo ""
}
|