11 lines
95 B
Bash
11 lines
95 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
super_apply() {
|
||
|
xbps-install -y zsh
|
||
|
}
|
||
|
|
||
|
super_undo() {
|
||
|
xbps-remove -y zsh
|
||
|
}
|
||
|
|