aegiscode 5.1.7 → 5.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.js +471 -486
- package/package.json +1 -1
- package/scripts/install-alacritty.sh +2 -0
package/package.json
CHANGED
|
@@ -30,6 +30,8 @@ install_alacritty_linux() {
|
|
|
30
30
|
sudo dnf install -y alacritty
|
|
31
31
|
elif command -v zypper &>/dev/null; then
|
|
32
32
|
sudo zypper install -y alacritty
|
|
33
|
+
elif command -v guix &>/dev/null; then
|
|
34
|
+
guix install alacritty
|
|
33
35
|
elif command -v snap &>/dev/null; then
|
|
34
36
|
sudo snap install alacritty --classic
|
|
35
37
|
else
|