From ffb5d7cd7cbee9645bad2bce2b56f8c222c1a266 Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani <3fb650a9-b47e-4604-a282-1dd91953b2ee@anonaddy.me> Date: Thu, 5 Nov 2020 17:39:50 -0500 Subject: [PATCH 1/1] added system-setup, license --- COPYING | 13 +++++++++++++ system-setup | 17 +++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 COPYING create mode 100755 system-setup diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..5c93f45 --- /dev/null +++ b/COPYING @@ -0,0 +1,13 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. diff --git a/system-setup b/system-setup new file mode 100755 index 0000000..2ba2dd3 --- /dev/null +++ b/system-setup @@ -0,0 +1,17 @@ +#!/usr/bin/env bash +update="apt update && apt upgrade -y" +install="apt install -y" +autoremove="apt autopurge" + +${update} +${autoremove} + +for i in neovim nvim firefox-esr flatpak quassel-client virtualbox htop bleachbit timeshift flatpak bat batcat exa zsh git gnupg pinentry-console alacritty taskwarrior tasks task fzf yadu chromium vlc zathura libreoffice-writer libreoffice-calc bpytop xcape docker ufw syncthing synaptic virtualbox-ext-pack; do + sudo ${install} $i +done + +flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo +flatpak install -y spotify discord tutanota + +yadm clone git@codeberg.org:armaan/dotfiles +mkdir {~/Code,~/Clone,~/Public,~/Virtual} -- 2.39.2