mirror of
https://github.imc.re/void-land/hyprland-void-dots
synced 2025-10-17 17:15:02 +02:00
16 lines
311 B
Bash
Executable file
16 lines
311 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source ../utils/main.sh
|
|
|
|
DOWNLOAD_URL="https://github.com/MatsuriDayo/nekoray/releases/download/3.26/nekoray-3.26-2023-12-09-linux64.zip"
|
|
FILE_NAME="nekoray.zip"
|
|
|
|
install_nekoray() {
|
|
download_file "$DOWNLOAD_URL" "$FILE_NAME"
|
|
|
|
opt_installer "/tmp/$FILE_NAME"
|
|
}
|
|
|
|
check_sudo
|
|
|
|
install_nekoray
|