Compare commits

...

2 commits

Author SHA1 Message Date
askiiart
b3ffddb98f
fix cavif being compiled locally (not installed via dnf) 2025-05-22 19:12:26 -05:00
askiiart
c3d8ac36ce
remove vesktop 2025-05-22 19:11:58 -05:00
4 changed files with 2 additions and 30 deletions

View file

@ -18,7 +18,6 @@ chmod 700 ./*.bash
./install-vs-code.bash
./install-fonts.bash
./install-yt-music.bash
./install-vesktop.sh
./install-swayfx.bash
./install-podman.sh
cd ..

View file

@ -12,7 +12,7 @@ if command_exists "apt-get"; then
sudo apt-get install kitty -y
echo "Please install SchildiChat, nvim/neovim"
elif command_exists "dnf"; then
sudo dnf install kitty neovim gcc gnome-hexgl drawing make vlc freeglut ncdu gcolor3 rustup p7zip mosh krita podman podman-docker podman-compose gajim progress yt-dlp genisoimage zstd iperf3 keepassxc python3-pip ffmpegthumbnailer linuxconsoletools bind-utils hyfetch fastfetch nmap unrar-free restic gparted bsdtar android-tools httpd-tools digikam edid-decode hexchat htop minetest fuse-sshfs syncthing nasm sysstat openshot HandBrake HandBrake-gui electrum feather obs-studio fuse-libs pandoc wtype fedora-packager rpmdevtools createrepo_c iotop igt-gpu-tools power-profiles-daemon solaar -y
sudo dnf install kitty neovim gcc gnome-hexgl drawing make vlc freeglut ncdu gcolor3 rustup p7zip mosh krita podman podman-docker podman-compose gajim progress yt-dlp genisoimage zstd iperf3 keepassxc python3-pip ffmpegthumbnailer linuxconsoletools bind-utils hyfetch fastfetch nmap unrar-free restic gparted bsdtar android-tools httpd-tools digikam edid-decode hexchat htop minetest fuse-sshfs syncthing nasm sysstat openshot HandBrake HandBrake-gui electrum feather obs-studio fuse-libs pandoc wtype fedora-packager rpmdevtools createrepo_c iotop igt-gpu-tools power-profiles-daemon solaar cavif -y
sudo dnf install ffmpeg --allowerasing
sudo systemctl enable --now syncthing@askiiart

View file

@ -7,10 +7,9 @@ fi
command_exists() { type "$1" &>/dev/null; }
if command_exists "yum"; then
sudo dnf install rustup -y
sudo dnf install rustup gcc -y
fish -c "rustup-init"
fish -c "cargo install cavif"
sudo dnf remove rust -y
elif command_exists "rpm-ostree"; then
sudo wget https://askiiart.net/repos/fedora/x86_64/askiiart.repo -O /etc/yum.repos.d/askiiart.repo

View file

@ -1,26 +0,0 @@
#!/usr/bin/env bash
set -euo pipefail
if [ $(whoami) == "root" ]; then
echo "Run as a normal user, not root"
exit 1
fi
command_exists() { type "$1" &>/dev/null; }
if command_exists "apt-get"; then
curl -LO $(curl -s https://api.github.com/repos/Vencord/Vesktop/releases/latest | grep "vesktop_.*_amd64.deb" | head --lines 1 | cut -d : -f 2,3 | tr -d \")
sudo apt-get install ./vesktop_*.deb -y
elif command_exists "dnf"; then
sudo dnf install $(curl -s https://api.github.com/repos/Vencord/Vesktop/releases/latest | grep "browser_download_url.*vesktop-.*.x86_64.rpm" | head --lines 1 | cut -d : -f 2,3 | tr -d \")
elif command_exists "rpm-ostree"; then
rpm-ostree install $(curl -s https://api.github.com/repos/Vencord/Vesktop/releases/latest | grep "browser_download_url.*vesktop-.*.x86_64.rpm" | head --lines 1 | cut -d : -f 2,3 | tr -d \")
elif command_exists "yay"; then
yay -S vesktop-bin --noconfirm --needed
elif command_exists "xbps-install"; then
cd ~/Applications
curl -LO $(curl -s https://api.github.com/repos/Vencord/Vesktop/releases/latest | grep "browser_download_url.*Vesktop-.*.AppImage" | tail --lines 1 | cut -d : -f 2,3 | tr -d \")
cd -
else
echo "IDK, check the repo: https://github.com/Vencord/Vesktop"
fi