7 lines
92 B
Bash
7 lines
92 B
Bash
|
super_apply() {
|
||
|
pacman -S --needed alacritty
|
||
|
}
|
||
|
|
||
|
super_undo() {
|
||
|
pacman -R alacritty
|
||
|
}
|