a little tidying up and small corrections
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 ..
|
||||
|
||||
@@ -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
|
||||
@@ -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
|
||||
|
||||
@@ -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 "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user