Lightpad add 64bit script
parent
59561f162b
commit
edabc91460
@ -0,0 +1,26 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
wget https://github.com/libredeb/lightpad/releases/download/v0.0.8/lightpad_0.0.8.rev1_arm64.deb -O ~/lightpad.deb || error "Failed to download lightpad.deb!"
|
||||
|
||||
sudo apt install -y --fix-missing ~/lightpad.deb || error "APT failed to install lightpad_0.0.8.rev1_armhf.deb!"
|
||||
|
||||
rm -f ~/lightpad.deb
|
||||
|
||||
echo "[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=Lightpad
|
||||
Icon=lightpad
|
||||
Exec=com.github.libredeb.lightpad
|
||||
Comment=LightPad is a lightweight, simple and powerful application launcher
|
||||
Categories=Accessories;Utility;
|
||||
Terminal=false" > ~/.local/share/applications/lightpad.desktop
|
||||
|
||||
|
Loading…
Reference in New Issue