From cdf03d6c96eb2bd3a61eacf341a523361ee1df7f Mon Sep 17 00:00:00 2001 From: Severin Kaderli Date: Tue, 11 Jun 2019 17:12:09 +0200 Subject: [PATCH] Update packages Signed-off-by: Severin Kaderli --- install | 9 +++++++++ packages/packages.aur.list | 1 + packages/packages.native.list | 3 +++ system/.local/bin/resolution | 4 ++-- 4 files changed, 15 insertions(+), 2 deletions(-) diff --git a/install b/install index 8d587ac..827d299 100755 --- a/install +++ b/install @@ -130,6 +130,11 @@ NPM_PACKAGES=( "npm-check-updates" ) +# composer packages which should be installed globally +COMPOSER_PACKAGES=( + "laravel/installer" +) + ############################################################################### # Installtion information # ############################################################################### @@ -191,6 +196,10 @@ print_section "Installing global npm packages" print_log "Installing ${#NPM_PACKAGES[@]} packages" npm i -g "${NPM_PACKAGES[@]}" +print_section "Installing global composer packages" +print_log "Installing ${#COMPOSER_PACKAGES[@]} packages" +composer global require "${COMPOSER_PACKAGES[@]}" + ############################################################################### # Creating directories # ############################################################################### diff --git a/packages/packages.aur.list b/packages/packages.aur.list index a4539a0..87e8246 100644 --- a/packages/packages.aur.list +++ b/packages/packages.aur.list @@ -18,6 +18,7 @@ ibus-qt intellij-idea-ultimate-edition java-openjfx-bin jstest-gtk-git +melonds-git mgba-qt-git minecraft-launcher mupen64plus-qt diff --git a/packages/packages.native.list b/packages/packages.native.list index 8d9b4e7..5ae0d0a 100644 --- a/packages/packages.native.list +++ b/packages/packages.native.list @@ -14,6 +14,7 @@ bash-completion bat beep biber +bind-tools binutils bison blueman @@ -63,6 +64,7 @@ gettext gimp git glibc +gnome-keyring gparted gpick gpicview-gtk3 @@ -187,6 +189,7 @@ rust-racer rustup s-nail sd +seahorse sed shadow simple-scan diff --git a/system/.local/bin/resolution b/system/.local/bin/resolution index 252a46e..c95e631 100755 --- a/system/.local/bin/resolution +++ b/system/.local/bin/resolution @@ -35,11 +35,11 @@ xrandr --output eDP-1-1 --primary --mode 1920x1080 --pos 1280x0 --rotate normal if is-connected "DVI-I-1-1"; then xrandr --output DVI-I-1-1 --mode 1920x1080 --left-of eDP1 else - xrandr --output DVI-I-1-1 --off + xrandr --output DVI-I-1-1 --off fi if is-connected "DVI-I-2-1"; then xrandr --output DVI-I-2-1 --mode 1920x1080 --left-of eDP-1-1 else - xrandr --output DVI-I-2-1 --off + xrandr --output DVI-I-2-1 --off fi