From a94309bae74d19c6e93e625123124d5f07103ccc Mon Sep 17 00:00:00 2001 From: ITmail-dk <48917593+ITmail-dk@users.noreply.github.com> Date: Mon, 31 Jan 2022 10:25:21 +0100 Subject: [PATCH] a little tidying up and small corrections --- config/alacritty/alacritty.yml | 2 +- install-ma-dte-debian.sh | 14 ------ install-menu.sh | 47 ------------------- install-scripts/apt-install-core-packages.sh | 5 ++ .../apt-install-software-last-packages.sh | 7 --- install.sh | 3 +- 6 files changed, 7 insertions(+), 71 deletions(-) delete mode 100644 install-menu.sh diff --git a/config/alacritty/alacritty.yml b/config/alacritty/alacritty.yml index e181acc..64b082e 100644 --- a/config/alacritty/alacritty.yml +++ b/config/alacritty/alacritty.yml @@ -156,7 +156,7 @@ font: style: monospace # Point size - size: 8.0 + size: 11.0 # Offset is the extra space around each character. `offset.y` can be thought # of as modifying the line spacing, and `offset.x` as modifying the letter diff --git a/install-ma-dte-debian.sh b/install-ma-dte-debian.sh index 30c46f6..888a76d 100644 --- a/install-ma-dte-debian.sh +++ b/install-ma-dte-debian.sh @@ -16,17 +16,3 @@ systemctl --user enable pulseaudio # Last step setup menu installing. #. ~/bspwm-install-ma-dte/last-step-setup-menu.sh - -#echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-" -#echo " " -#echo " " -#echo " Enter your user password, to continue if necessary" -#echo " " -#echo " " -#echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-" - -#sleep 1 - -#read -p "You are ready to reboot... Press [Enter] key to Reboot System." - -#systemctl rebootcd .. diff --git a/install-menu.sh b/install-menu.sh deleted file mode 100644 index 3bfa714..0000000 --- a/install-menu.sh +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/bash - -# Remember that this menu uses this apt package "dialog" - -HEIGHT=35 -WIDTH=80 -CHOICE_HEIGHT=5 -BACKTITLE="Martin BSPwm DTE - The installation" -TITLE="Martin DTE - BSPwm installation" -MENU="Choose you system from the following options:" - -OPTIONS=(1 "AMD Driver" - 2 "AMD Driver + NVIDIA" - 3 "Intel Driver" - 4 "Intel + NVIDIA Driver" - 5 "Virtual Machine - New SUPER KEY to ALT KEY" - 6 "Do nothing and Reboot") - -CHOICE=$(dialog --clear \ - --backtitle "$BACKTITLE" \ - --title "$TITLE" \ - --menu "$MENU" \ - $HEIGHT $WIDTH $CHOICE_HEIGHT \ - "${OPTIONS[@]}" \ - 2>&1 >/dev/tty) - -clear -case $CHOICE in - 1) - sudo apt install -y amd64-microcode && systemctl reboot - ;; - 2) - sudo apt install -y amd64-microcode nvidia-detect nvidia-driver && systemctl reboot - ;; - 3) - sudo apt install -y intel-microcode && systemctl reboot - ;; - 4) - sudo apt install -y intel-microcode nvidia-detect nvidia-driver && systemctl reboot - ;; - 5) - . ~/bspwm-install-ma-dte/install-scripts/vm-install-mics.sh && systemctl reboot - ;; - 6) - systemctl reboot - ;; -esac \ No newline at end of file diff --git a/install-scripts/apt-install-core-packages.sh b/install-scripts/apt-install-core-packages.sh index 3a95ad8..8f775cc 100644 --- a/install-scripts/apt-install-core-packages.sh +++ b/install-scripts/apt-install-core-packages.sh @@ -19,3 +19,8 @@ echo "Enter your user password, to continue if necessary" # Core packages to be installed sudo apt install -y xorg x11-xserver-utils arandr autorandr dialog bspwm sxhkd sddm picom polybar xautolock xsecurelock caffeine network-manager git kitty psmisc rofi pcmanfm tlp font-manager gvfs-backends nitrogen dunst cups smbclient lxpolkit xbacklight lxappearance htop mc xarchiver pulseaudio pulsemixer moc mpv npm cava curl tmux imagemagick feh sxiv scrot flameshot firefox-esr numlockx ranger neovim notify-osd neofetch flatpak timeshift + +# Google Chrome - Download + Install ON / OFF +rm google-chrome-stable_current_amd64.deb +wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb +sudo apt install -y ~/bspwm-install-ma-dte/google-chrome-stable_current_amd64.deb diff --git a/install-scripts/apt-install-software-last-packages.sh b/install-scripts/apt-install-software-last-packages.sh index ef2341c..ec74d96 100644 --- a/install-scripts/apt-install-software-last-packages.sh +++ b/install-scripts/apt-install-software-last-packages.sh @@ -22,13 +22,6 @@ sudo apt install -y wireguard wireguard-tools libreoffice libreoffice-gtk3 libre # virt-manager xscreensaver thunar thunar-archive-plugin thunar-font-manager cmus ncmpcpp xidle i3lock-fancy # qt5ct .profile add export QT_QPA_PLATFORMTHEME="qt5ct" - -# Google Chrome - Download + Install ON / OFF -rm google-chrome-stable_current_amd64.deb -wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -sudo apt install -y ~/bspwm-install-ma-dte/google-chrome-stable_current_amd64.deb - - # Alacritty - Building and installing ON / OFF echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-" diff --git a/install.sh b/install.sh index 0cc917a..5ac33d0 100644 --- a/install.sh +++ b/install.sh @@ -1,8 +1,7 @@ #!/bin/bash # APT Update & apt upgrade -sudo apt update && sudo apt install -y dialog - +sudo apt update && sudo apt install -y dialog git # Remember that this menu uses this apt package "dialog"