impala
This commit is contained in:
parent
17076385db
commit
f88137f821
2 changed files with 15 additions and 0 deletions
|
|
@ -5,6 +5,10 @@ udisks2
|
||||||
gnome-disk-utility
|
gnome-disk-utility
|
||||||
perl
|
perl
|
||||||
blueman
|
blueman
|
||||||
|
upower
|
||||||
|
|
||||||
|
# WiFi
|
||||||
|
iwd
|
||||||
|
|
||||||
# Shared
|
# Shared
|
||||||
fonts-jetbrains-mono
|
fonts-jetbrains-mono
|
||||||
|
|
|
||||||
11
scripts/setup/setup-impala
Executable file
11
scripts/setup/setup-impala
Executable file
|
|
@ -0,0 +1,11 @@
|
||||||
|
#!/bin/sh
|
||||||
|
RELEASE_URL="https://github.com/pythops/impala/releases/latest/download"
|
||||||
|
BIN_PREFIX="$HOME/.local/bin"
|
||||||
|
REMOTE_NAME="impala-x86_64-unknown-linux-gnu"
|
||||||
|
BIN_NAME="impala"
|
||||||
|
|
||||||
|
target="$BIN_PREFIX"/"$BIN_NAME"
|
||||||
|
|
||||||
|
mkdir -p "$BIN_PREFIX"
|
||||||
|
curl -sL "$RELEASE_URL"/"$REMOTE_NAME" -o "$target"
|
||||||
|
chmod +x "$target"
|
||||||
Loading…
Reference in a new issue