8 lines
93 B
Bash
8 lines
93 B
Bash
|
super_apply() {
|
||
|
apt install -y alacritty
|
||
|
}
|
||
|
|
||
|
super_undo() {
|
||
|
apt remove -y alacritty
|
||
|
}
|