blob: 565228ecf57704cb793da1c95c4bef3f96bfe001 (
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() {
cat <<'HELP'
Welcome to Polybarman!
Quick Start:
# Usage example in your ~/.config/polybar/launch.zsh:
autoload -Uz polybarman
alias pbm=polybarman
pbm require --id 'group/plugin-name' --src 'https://...'
pbm apply
CLI Usage:
# Assume you are logged in Zsh
autoload -Uz polybarman # <- for better UX add this line to your ~/.zshrc
polybarman --help
More Info: https://codeberg.org/mohterbaord/polybarman
HELP
}
post_upgrade() {
post_install
}
|