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