mirror of
https://github.com/JanJastrow/.dotfiles.git
synced 2024-12-04 15:31:01 +01:00
Compare commits
No commits in common. "a635273e20caf723b6899821981ec77e5b26b167" and "be0c5488a64ee01c667537b952efa7cfd8a940a3" have entirely different histories.
a635273e20
...
be0c5488a6
@ -1,24 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
set -uo pipefail
|
||||
|
||||
# Backup folder
|
||||
BACKUP_MAIN="$HOME/backups"
|
||||
mkdir -p $BACKUP_MAIN
|
||||
|
||||
# Copy iptables rules
|
||||
if [ -d "/etc/iptables/" ]; then
|
||||
mkdir -p $BACKUP_MAIN/iptables
|
||||
rm $BACKUP_MAIN/iptables/rules.*
|
||||
sudo cp /etc/iptables/rules.v4 $BACKUP_MAIN/iptables/
|
||||
sudo cp /etc/iptables/rules.v6 $BACKUP_MAIN/iptables/
|
||||
fi
|
||||
|
||||
# Copy LXC confs
|
||||
if [ -e "/etc/pve/lxc/" ]; then
|
||||
mkdir -p $BACKUP_MAIN/lxc
|
||||
rm $BACKUP_MAIN/lxc/*.conf
|
||||
sudo cp -R /etc/pve/lxc/* $BACKUP_MAIN/lxc/
|
||||
fi
|
||||
|
||||
# Change owner
|
||||
sudo chown -R $USER:$USER $BACKUP_MAIN
|
@ -1,8 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
set -uo pipefail
|
||||
|
||||
# Delete logs older than 7 days
|
||||
sudo journalctl --vacuum-time=7days
|
||||
|
||||
# Delete other archived log files
|
||||
sudo rm /var/log/*.gz
|
@ -4,11 +4,7 @@ set -euo pipefail
|
||||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
||||
brew doctor
|
||||
|
||||
#
|
||||
echo "Installed Homebrew."
|
||||
read -p "Press any key to continue installing packages"
|
||||
|
||||
# Install some default tools
|
||||
brew update
|
||||
brew install aria2 bat btop dog eza f3 ffmpeg gping imagemagick iperf3 lsd mosh mozjpeg nano ncdu nmap p7zip pigz rclone rsync screen syncthing telnet tesseract thefuck tldr tmux unzip yt-dlp zstd
|
||||
brew install --cask balenaetcher calibre cryptomator iina handbrake imageoptim libreoffice losslesscut mgba mkvtoolnix nextcloud rar retroarch-metal secretive signal transmission ultimaker-cura vlc vscodium zed
|
||||
brew install tmux mosh eza lsd ffmpeg aria2 bat dog f3 gping btop imagemagick iperf3 ncdu p7zip pigz rclone rsync screen thefuck tldr unzip yt-dlp zstd
|
||||
brew install --cask balenaetcher cryptomator iina handbrake imageoptim libreoffice losslesscut mgba mkvtoolnix nextcloud obs rar retroarch-metal secretive ultimaker-cura vlc vscodium zed signal transmission
|
||||
|
Loading…
Reference in New Issue
Block a user