- browser, curl or wget
- unzip
- protontricks
- lutris
e.g Debian:
apt install curl unzip protontricks
e.g Arch/EndeavourOS:
pacman -S curl unzip protontricks
#!/bin/bash | |
echo "$([ "$1" == "install" ] && echo "Install" || echo "Update") Discord" | |
# Download Discord | |
cd /tmp | |
curl -o discord.tar.gz -J --location-trusted --max-redirs 10 "https://discord.com/api/download/stable?platform=linux&format=tar.gz" | |
# Unzip | |
tar -xzf discord.tar.gz |
#!/bin/bash | |
# | |
# Script by Razuuu | |
# | |
# Variables | |
CONFIGFILE=$1 | |
# Access to usershell via function |
#!/bin/bash | |
echo "Install 64Gram" | |
cd /tmp | |
# Download 64Gram from GitHub Releases | |
ghfile=$(curl -s https://api.github.com/repos/TDesktop-x64/tdesktop/releases/latest \ | |
| grep "browser_download_url.*64Gram_.*_linux.zip" \ | |
| cut -d : -f 2,3 \ | |
| tr -d \",) |
convert <image> -define icon:auto-resize=256,64,48,32,16 favicon.ico |
find / -type f -size +500M -exec du -sh {} \; |
Official guide for PulseAudio: https://docs.audiorelay.net/instructions/linux/use-your-phone-as-a-mic-for-a-linux-pc
From: https://audiorelay.net/downloads/linux
Deb on debian or ubuntu, archive for others.
find . -type f -exec grep -H 'example string' {} \; | |
#or | |
grep -Rnw '.' -e 'example string' |
dd if=/dev/zero of=1GB.bin bs=1 count=0 seek=1GB |