blob: 8bc8e9073c003adcee75e065c5bbebc06eb21504 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
cat <<'EOF'
Dynamic Glacier installed.
Run it with:
dynamic-glacier
For Hyprland autostart, add this to hyprland.conf:
exec-once = dynamic-glacier
EOF
}
post_upgrade() {
post_install
}
|