From: Oscar J Rodriguez Date: Wed, 27 Jan 2021 16:14:06 +0000 (-0500) Subject: Just deleted another, folder because new repo X-Git-Url: https://git.josue.xyz/?p=dotfiles%2F.git;a=commitdiff_plain;h=812379a745a7f23788c538f26d71c84232bf09cc Just deleted another, folder because new repo --- diff --git a/scripts/update/archivo.pdf b/scripts/update/archivo.pdf deleted file mode 100644 index e69de29b..00000000 diff --git a/scripts/update/errores.txt b/scripts/update/errores.txt deleted file mode 100644 index 3328feb0..00000000 --- a/scripts/update/errores.txt +++ /dev/null @@ -1 +0,0 @@ -No manual entry for masdfasfsafasdfdsan diff --git a/scripts/update/updaterarch b/scripts/update/updaterarch deleted file mode 100755 index d4c12344..00000000 --- a/scripts/update/updaterarch +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash -if [ $2 == "0" ] -then - a -else - a -fi diff --git a/scripts/update/updaterdeb b/scripts/update/updaterdeb deleted file mode 100755 index 9beb553d..00000000 --- a/scripts/update/updaterdeb +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo $@; diff --git a/scripts/update/updaterfed b/scripts/update/updaterfed deleted file mode 100755 index e69de29b..00000000 diff --git a/scripts/update/updaternpm b/scripts/update/updaternpm deleted file mode 100755 index e69de29b..00000000 diff --git a/scripts/update/updaterpip b/scripts/update/updaterpip deleted file mode 100755 index e69de29b..00000000 diff --git a/scripts/update/updaterselector b/scripts/update/updaterselector deleted file mode 100755 index 9d78ceb6..00000000 --- a/scripts/update/updaterselector +++ /dev/null @@ -1,55 +0,0 @@ -#!/bin/bash - - -eval 'resize'; #this creates variables for the size of the terminal - - -#In the next line we do the trick of asignning the output to a variable, but we invert stdout and stderr via the "3>&1 1>&2 2>&3" part, because whiptail exports via stderr - - -value1=$(whiptail --title "Global package manager" --menu "What are we managing today?" $(( $LINES - 8 )) $(( $COLUMNS - 4 )) $(( $LINES - 16 )) \ -"1" "APT" \ -"2" "PACMAN" \ -"3" "YAY" \ -"4" "DNF" \ -"5" "PIP (python installer)" \ -"6" "NODE.JS Modules in this directory" \ -"7" "CLOSE THIS" 3>&1 1>&2 2>&3) - - -if [ $value1 == "7" ] -then - exit 0; -fi - - -value2=$(whiptail --title "Global package manager" --menu "What do you want to do?" $(( $LINES - 8 )) $(( $COLUMNS - 4 )) $(( $LINES - 16 )) \ -"1" "Install package" \ -"2" "Update/reinstall specific package" \ -"3" "Uninstall package" \ -"4" "See installed packages" \ -"5" "Search for a package" \ -"6" "CLOSE THIS" 3>&1 1>&2 2>&3) - - -case $value1 in -1) - . $(pwd)/updaterdeb $value2; - ;; -2) - . $(pwd)/updaterarch $value2 0; - ;; -3) - . $(pwd)/updaterarch $value2 1; - ;; -3) - . $(pwd)/updaterfed $value2; - ;; -5) - . $(pwd)/updaterpip $value2; - ;; -6) - . $(pwd)/updaternpm $value2; - ;; -esac -