🏹
- trpapp.github.io
- @ThomasRPapp
- ThomasRPapp
- https://simplex.chat/contact/#/?v=2-7&smp=smp%3A%2F%2FenEkec4hlR3UtKx2NMpOUK_K4ZuDxjWBO1d9Y4YXVaA%3D%40smp14.simplex.im%2F_BsG6LqE6j6REIMiNFYyy8ED688PrnlU%23%2F%3Fv%3D1-3%26dh%3DMCowBQYDK2VuAyEA7nnOXsATMclsPiTDRJt0TiutHShqTXGYGCLM7gBBxCc%253D%26srv%3Daspkyu2sopsnizbyfabtsicikr2s4r3ti35jogbcekhm3fsoeyjvgrid.onion
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
dpkg-query -Wf '${Installed-Size}\t${Package;-40}${Priority}\n' | sort -nr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo Starting #%0 & @ECHO OFF & GOTO :windows | |
#### BASH SCRIPT STARTS HERE #### | |
# Check for OS name, but can't trust uname -a for arch | |
OS=`uname` | |
# Detect architecture by abusing an integer overflow | |
if ((1<<32)); then | |
ARCH=64 # 64-bit architecture |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Main Debian package repositories | |
deb https://deb.debian.org/debian/ stable main contrib non-free | |
deb-src https://deb.debian.org/debian/ stable main contrib non-free | |
#Main Debian package updates repositories | |
deb https://deb.debian.org/debian/ stable-updates main contrib non-free | |
deb-src https://deb.debian.org/debian/ stable-updates main contrib non-free | |
#Main Debian package backport repositories | |
deb https://deb.debian.org/debian/ stable-backports main contrib non-free |