This commit is contained in:
Strix 2023-10-14 22:38:12 +02:00
parent 11187dc11c
commit 05595c2e14
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774
28 changed files with 210 additions and 246 deletions

View file

@ -0,0 +1,7 @@
super_apply() {
pacman -S --needed alacritty
}
super_undo() {
pacman -R alacritty
}

View file

@ -0,0 +1,12 @@
#!/bin/sh
describe="Installs alacritty and configs"
scripts="@distro @self"
apply() {
[ -e "$HOME/.config/alacritty/alacritty.yml" ] || ln files/alacritty.yml $HOME/.config/alacritty/alacritty.yml
}
undo() {
unlink $HOME/.config/alacritty/alacritty.yml
}

View file

@ -0,0 +1,6 @@
cursor:
style:
shape: 'Block'
blinking: 'On'
blink_interval: 500