From 90f5f8b3f4cf42a08e0ed05e173b1f42258128e5 Mon Sep 17 00:00:00 2001 From: Joseph Groocock Date: Thu, 31 Mar 2016 18:45:07 +0100 Subject: [PATCH] Add incomplete install & setup script --- packages | 92 +++++++++++++++++++++++++++++++++++++++++ scripts/listpackages.sh | 13 ++++++ scripts/setup.sh | 7 ++++ 3 files changed, 112 insertions(+) create mode 100644 packages create mode 100755 scripts/listpackages.sh create mode 100755 scripts/setup.sh diff --git a/packages b/packages new file mode 100644 index 0000000..b478bdb --- /dev/null +++ b/packages @@ -0,0 +1,92 @@ +alsa-utils +arandr +asciiquarium +blueman +bluez +breeze-obsidian-cursor-theme +btrfs-progs +clang +cmake +compton +cower +cowsay +dex +dosfstools +dropbox +dunst +efibootmgr +eog +evince +expac +feh +firefox +gdmap +gimp +gitg +gksu +google-chrome +gtk-theme-arc-solid +gvim +htop +i3blocks +i3-gaps-next-git +i3lock-git +imagemagick +imgur-screenshot-git +insync +intellij-idea-ultimate-edition +jdk8-openjdk +jre8-openjdk +keepass +lightdm-webkit2-greeter +lightdm-webkit-theme-google-git +lm_sensors +lolcat +lxappearance +mono +networkmanager +network-manager-applet +nmap +nodejs +npm +ntfs-3g +nvidia +oh-my-zsh-git +openssh +pacaur +pavucontrol +powerline +powertop +pulseaudio +pulseaudio-alsa +qt5-qtstyleplugins +redshift +rofi +rxvt-unicode-patched +rsync +screenfetch +scrot +slack-desktop +steam +sysstat +teamspeak3 +teamspeak3-soundpack-portal +terminus-font +tree +ttf-chromeos-fonts +ttf-font-awesome +unzip +urxvt-perls +urxvt-vtwheel +wget +xbindkeys +xclip +xdg-user-dirs +xenlism-wildfire-icon-theme-git +xorg-server +xorg-xev +xorg-xinit +xorg-xrdb +xtitle +zsh +zsh-syntax-highlighting diff --git a/scripts/listpackages.sh b/scripts/listpackages.sh new file mode 100755 index 0000000..45b07e1 --- /dev/null +++ b/scripts/listpackages.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +set -e + +ALL=$(pacman --query --quiet --explicit) +BASE=$(pacman --query --quiet --groups base) +BASE_DEVEL=$(pacman --query --quiet --groups base-devel) + +echo "$ALL +$BASE +$BASE +$BASE_DEVEL +$BASE_DEVEL" | sort | uniq -u \ No newline at end of file diff --git a/scripts/setup.sh b/scripts/setup.sh new file mode 100755 index 0000000..603b633 --- /dev/null +++ b/scripts/setup.sh @@ -0,0 +1,7 @@ +./install-pacaur.sh + +pacaur -S ../packages + +systemctl enable lightdm.service +systemctl enable bluetooth.service --now +systemctl enable NetworkManager.service --now