Add packages
This commit is contained in:
@@ -0,0 +1,93 @@
|
|||||||
|
automake
|
||||||
|
avahi-autoipd
|
||||||
|
avahi-daemon
|
||||||
|
avahi-discover
|
||||||
|
avahi-ui-utils
|
||||||
|
avahi-utils
|
||||||
|
avrdude
|
||||||
|
bind9-dnsutils
|
||||||
|
build-essential
|
||||||
|
bzip2
|
||||||
|
cowsay
|
||||||
|
cubicsdr
|
||||||
|
cutesdr
|
||||||
|
dos2unix
|
||||||
|
dvb-apps
|
||||||
|
espeak-ng
|
||||||
|
esptool
|
||||||
|
exiftool
|
||||||
|
fortune
|
||||||
|
gimp
|
||||||
|
gimp-data-extras
|
||||||
|
git
|
||||||
|
gnome-terminal
|
||||||
|
gnss-sdr
|
||||||
|
gnuplot
|
||||||
|
gnuplot-x11
|
||||||
|
gnuradio
|
||||||
|
gpredict
|
||||||
|
gqrx-sdr
|
||||||
|
gr-gsm
|
||||||
|
gr-radar
|
||||||
|
gr-satellites
|
||||||
|
hackrf
|
||||||
|
hacktv
|
||||||
|
hamradio-satellite
|
||||||
|
htop
|
||||||
|
hyfetch
|
||||||
|
imagemagick
|
||||||
|
kicad
|
||||||
|
kicad-doc
|
||||||
|
kicad-library-all
|
||||||
|
lolcat
|
||||||
|
mplayer
|
||||||
|
neovim
|
||||||
|
ninja-build
|
||||||
|
octave
|
||||||
|
octave-arduino
|
||||||
|
octave-audio
|
||||||
|
octave-communications
|
||||||
|
octave-doc
|
||||||
|
octave-general
|
||||||
|
octave-geometry
|
||||||
|
octave-image
|
||||||
|
octave-io
|
||||||
|
octave-jsonlab
|
||||||
|
octave-mapping
|
||||||
|
octave-miscellaneous
|
||||||
|
octave-missing-functions
|
||||||
|
octave-nan
|
||||||
|
octave-plplot
|
||||||
|
octave-signal
|
||||||
|
octave-sockets
|
||||||
|
octave-splines
|
||||||
|
octave-statistics
|
||||||
|
octave-strings
|
||||||
|
octave-symbolic
|
||||||
|
octave-zenity
|
||||||
|
pcapfix
|
||||||
|
pdfgrep
|
||||||
|
pipx
|
||||||
|
plzip
|
||||||
|
python3-all
|
||||||
|
python3-venv
|
||||||
|
rclone
|
||||||
|
rtl-sdr
|
||||||
|
screen
|
||||||
|
sl
|
||||||
|
soapysdr-module-hackrf
|
||||||
|
soapysdr-module-remote
|
||||||
|
soapysdr-module-rtlsdr
|
||||||
|
stellarium
|
||||||
|
supertux
|
||||||
|
supertuxkart
|
||||||
|
synaptic
|
||||||
|
tcptrace
|
||||||
|
teeworlds
|
||||||
|
tmux
|
||||||
|
tty-solitaire
|
||||||
|
wireshark-gtk
|
||||||
|
x11-apps
|
||||||
|
x11-utils
|
||||||
|
xcowsay
|
||||||
|
zsh
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Run on boot
|
||||||
|
# - change hostname
|
||||||
|
# - Setup mounts
|
||||||
|
# +
|
||||||
|
hostnamectl set-hostname hacdc-$(./mac.sh)
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
com.getpostman.Postman
|
||||||
|
com.google.EarthPro
|
||||||
|
com.js8call.JS8Call
|
||||||
|
com.prusa3d.PrusaSlicer
|
||||||
|
com.rawtherapee.RawTherapee
|
||||||
|
io.github.ungoogled_software.ungoogled_chromium
|
||||||
|
io.gitlab.librewolf-community
|
||||||
|
org.blender.Blender
|
||||||
|
org.darktable.Darktable
|
||||||
|
org.freecad.FreeCAD
|
||||||
|
org.qgis.qgis
|
||||||
|
org.videolan.VLC
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
|
||||||
|
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" --unattended
|
||||||
|
curl https://pyenv.run | bash
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
yt-dlp
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
add-apt-repository ppa:kicad/kicad-10.0-releases --yes
|
||||||
|
|
||||||
|
|
||||||
|
apt update
|
||||||
|
|
||||||
|
while read -r line; do
|
||||||
|
apt install "$line" --yes
|
||||||
|
done < apt.list
|
||||||
|
|
||||||
|
while read -r line; do
|
||||||
|
snap install "$line"
|
||||||
|
done < snap.list
|
||||||
|
|
||||||
|
while read -r line; do
|
||||||
|
flatpak install "$line"
|
||||||
|
done < flatpak.list
|
||||||
|
|
||||||
|
|
||||||
|
# curl -L https://nixos.org/nix/install | sh -s -- --daemon
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
code --classic
|
||||||
|
arduino --classic
|
||||||
|
freecad --classic
|
||||||
Reference in New Issue
Block a user