You guys changed got me in the habit of writing useless commit messages.
This commit is contained in:
parent
1b61e57a05
commit
12e846d3c5
19
LULI.sh
19
LULI.sh
|
@ -1,13 +1,22 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
# Original script by https://github.com/GermanBread
|
# Lightcord unified Linux installer by https://github.com/GermanBread
|
||||||
# Lightcord unified Linux installer by Germanbread
|
|
||||||
|
|
||||||
# Some variables
|
#
|
||||||
|
# CHANGE STUFF HERE
|
||||||
|
#
|
||||||
|
|
||||||
|
# Change this to anything other than "false" to allow installing under NixOS
|
||||||
|
# Ideally you'd also change $GLOBAL_INSTALL_DIR while you're at it
|
||||||
ALLOW_NIXOS='false'
|
ALLOW_NIXOS='false'
|
||||||
|
|
||||||
|
# Make sure to trim the trailing forward-slash (/)
|
||||||
GLOBAL_INSTALL_DIR='/opt'
|
GLOBAL_INSTALL_DIR='/opt'
|
||||||
LOCAL_INSTALL_DIR="$HOME/.lightcord"
|
LOCAL_INSTALL_DIR="$HOME/.lightcord"
|
||||||
|
|
||||||
|
#
|
||||||
|
# DON'T TOUCH BELOW HERE
|
||||||
|
#
|
||||||
|
|
||||||
# URL for downloads
|
# URL for downloads
|
||||||
ICON='https://raw.githubusercontent.com/Lightcord/Lightcord/master/discord.png'
|
ICON='https://raw.githubusercontent.com/Lightcord/Lightcord/master/discord.png'
|
||||||
LC_APPIMAGE='https://lightcord.org/api/gh/releases/Lightcord/Lightcord/dev/lightcord-linux-x86_64.AppImage'
|
LC_APPIMAGE='https://lightcord.org/api/gh/releases/Lightcord/Lightcord/dev/lightcord-linux-x86_64.AppImage'
|
||||||
|
@ -299,4 +308,4 @@ case $method in
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
exit
|
exit
|
||||||
|
|
Loading…
Reference in New Issue