new setup structure multiple fonts and various other small bug fixes

This commit is contained in:
ITmail-dk
2022-01-07 09:59:50 +01:00
parent fb1b21ff03
commit 7ca12b2e45
31 changed files with 77 additions and 77 deletions

View File

@@ -10,25 +10,18 @@ cd ~/bspwm-install-ma-dte
#read -p "Troubleshooting - Press a key to continue the installation." #read -p "Troubleshooting - Press a key to continue the installation."
# Add ROOT Level - Software & Packages. # Add Software & Packages.
. ~/bspwm-install-ma-dte/install-scripts/apt-install-all-packages.sh . ~/bspwm-install-ma-dte/install-scripts/apt-install-packages.sh
# Add pulseaudio to system startup. # Add Pulseaudio to system startup as user.
systemctl --user enable pulseaudio systemctl --user enable pulseaudio
# Alacritty - Building and installing ON / OFF # Last Software & Packages.
#echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-" . ~/bspwm-install-ma-dte/install-scripts/apt-install-last-packages.sh
#echo " "
#echo " Alacritty - Building and installing"
#echo " "
#echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
# Alacritty - Building and installing ON / OFF
#. ~/bspwm-install-ma-dte/install-scripts/install-alacritty-debian.sh
# Last step setup menu installing. # Last step setup menu installing.
. last-step-setup-menu.sh . last-step-setup-menu.sh
echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-" echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
echo " " echo " "
echo " " echo " "
@@ -43,5 +36,5 @@ echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
sleep 1 sleep 1
read -p "You are ready to reboot... Press [Enter] key to Reboot System." read -p "You are ready to reboot... Press [Enter] key to Reboot System."
echo " "
sudo reboot sudo reboot

View File

@@ -26,10 +26,8 @@
;========================================================================= ;=========================================================================
[colors] [colors]
;background = ${xrdb:color0:#222}
background = #F209141E background = #F209141E
background-alt = #09141E background-alt = #09141E
;foreground = ${xrdb:color7:#222}
foreground = #ebebeb foreground = #ebebeb
foreground-alt = #555 foreground-alt = #555
primary = #333D53 primary = #333D53
@@ -65,9 +63,9 @@ background = ${colors.background}
foreground = ${colors.foreground} foreground = ${colors.foreground}
line-size = 3 line-size = 3
line-color = #f00 line-color = #dbdbdb
;# Option to provide a transparent can in x number of Pixels or a solid color around polubar ;# Ttransparent or Solid color border around Polybar. (Size in Pixels)
border-size = 0 border-size = 0
border-color = #00000000 border-color = #00000000
@@ -89,7 +87,7 @@ font-5 = "DejaVuSansMono Nerd Font:style=Book:size=12;2"
modules-left = bspwm xwindow modules-left = bspwm xwindow
;modules-center = mpd ;modules-center = mpd
modules-right = pulseaudio cpu memory wlan eth date temperature battery powermenu session modules-right = pulseaudio cpu memory wlan eth date temperature battery session
; Models list - filesystem xbacklight alsa pulseaudio xkeyboard memory cpu wlan eth battery temperature date powermenu ; Models list - filesystem xbacklight alsa pulseaudio xkeyboard memory cpu wlan eth battery temperature date powermenu
@@ -448,40 +446,11 @@ ramp-1 = 
ramp-2 =  ramp-2 = 
ramp-foreground = ${colors.foreground-alt} ramp-foreground = ${colors.foreground-alt}
[module/powermenu]
type = custom/menu
expand-right = true
format-spacing = 1
label-open = 
label-open-foreground = ${colors.icon-c1}
label-close = x
label-close-foreground = ${colors.icon-c1}
label-separator = " "
label-separator-foreground = ${colors.foreground-alt}
menu-0-0 = 
menu-0-0-exec = menu-open-1
menu-0-1 = 
menu-0-1-exec = menu-open-2
menu-1-0 = 
menu-1-0-exec = menu-open-0
menu-1-1 = 
menu-1-1-exec = systemctl reboot
menu-2-0 = 
menu-2-0-exec = systemctl poweroff
menu-2-1 = 
menu-2-1-exec = menu-open-0
[module/session] [module/session]
type = custom/text type = custom/text
click-left = powermenu.sh click-left = ~/.config/rofi/powermenu.sh
content = %{T4}%{T-} content = %{T4}%{T-}
content-background = ${colors.shade-2} content-background = ${colors.shade-2}
content-foreground = ${colors.shade-5} content-foreground = ${colors.shade-5}

View File

@@ -9,11 +9,11 @@ configuration {
@theme "/dev/null" @theme "/dev/null"
* { * {
bg: #11121D; bg: #10171c;
bg-alt: #444b6a; bg-alt: #344959;
fg: #FFFFFF; fg: #EBEBEB;
fg-alt: #787c99; fg-alt: #768ca3;
background-color: @bg; background-color: @bg;
@@ -78,5 +78,4 @@ prompt {
/* vim: ft=sass /* vim: ft=sass
// Theme location is "/usr/share/rofi/themes/name.rasi" // Theme location is "/usr/share/rofi/themes/name.rasi"
//@theme "/usr/share/rofi/themes/Arc-Dark.rasi" //@theme "/usr/share/rofi/themes/Arc-Dark.rasi"

View File

@@ -3,8 +3,8 @@
chosen=$(printf " Power Off\n Restart\n Lock" | rofi -dmenu -i -theme-str '@import "powermenu.rasi"') chosen=$(printf " Power Off\n Restart\n Lock" | rofi -dmenu -i -theme-str '@import "powermenu.rasi"')
case "$chosen" in case "$chosen" in
" Power Off") poweroff ;; " Power Off") systemctl poweroff ;;
" Restart") reboot ;; " Restart") systemctl reboot ;;
" Lock") i3lock-fancy -gpf DejaVu Sans -- scrot -z ;; " Lock") i3lock-fancy -gp -- scrot -z ;;
*) exit 1 ;; *) exit 1 ;;
esac esac

View File

@@ -1,6 +1,11 @@
# #
# Hotkey - Config # Hotkey - Config
# #
###################################
# Reload sxhkd config file.
super + alt + ctrl + Escape
pkill -USR1 -x sxhkd
###################################
# Terminal´s primary and secondary. # Terminal´s primary and secondary.
super + Return super + Return
@@ -14,11 +19,6 @@ super + shift + Return
super + r super + r
rofi -show run rofi -show run
# Reload sxhkd config file.
super + alt + ctrl + Escape
pkill -USR1 -x sxhkd
super + b super + b
google-chrome google-chrome
@@ -26,7 +26,7 @@ super + shift + b
firefox firefox
super + e super + e
thunar pcmanfm
super + alt + ctrl + a super + alt + ctrl + a
kitty -e pulsemixer kitty -e pulsemixer
@@ -34,7 +34,8 @@ super + alt + ctrl + a
super + ctrl + m super + ctrl + m
. ~/.config/rofi/rofi-beats.sh . ~/.config/rofi/rofi-beats.sh
super + ctrl + alt + w
. ~/.config/rofi/rofi-wifi-menu.sh
# #
# BSPwm Hotkeys # BSPwm Hotkeys

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,29 @@
#!/bin/bash
# Install - Software & Packages.
echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
echo " "
echo " Download, Building & Install Software"
echo " "
echo " Enter your user password, to continue if necessary"
echo " "
echo " continues the installation in 3 seconds"
echo " "
echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
sleep 3
# Alacritty - Building and installing ON / OFF
#echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
#echo " "
#echo " Alacritty - Building and installing"
#echo " "
#echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
# Alacritty - Building and installing ON / OFF
#. ~/bspwm-install-ma-dte/install-scripts/install-alacritty-debian.sh
# Google Chrome - Download + Install ON / OFF
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

View File

@@ -27,16 +27,11 @@ sudo apt install -y zsh git wireguard wireguard-tools libreoffice libreoffice-gt
# Maybe maybe Software & Packages ON / OFF # Maybe maybe Software & Packages ON / OFF
sudo apt install -y dunst sudo apt install -y dunst
# Themes Extra Packages ON / OFF
sudo apt install -y papirus-icon-theme breeze-cursor-theme gnome-themes-extra
# Other packages not included or removed # Other packages not included or removed
# virt-manager xscreensaver thunar thunar-archive-plugin thunar-font-manager # virt-manager xscreensaver thunar thunar-archive-plugin thunar-font-manager
# qt5ct .profile add export QT_QPA_PLATFORMTHEME="qt5ct" # qt5ct .profile add export QT_QPA_PLATFORMTHEME="qt5ct"
# Google Chrome - Download + Install ON / OFF
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
# Themes Extra Packages ON / OFF
sudo apt install -y papirus-icon-theme breeze-cursor-theme gnome-themes-extra

View File

@@ -33,8 +33,12 @@ cp -r ~/bspwm-install-ma-dte/fonts/* ~/.fonts/
cp -r ~/bspwm-install-ma-dte/themes/* ~/.themes/ cp -r ~/bspwm-install-ma-dte/themes/* ~/.themes/
cp -r ~/bspwm-install-ma-dte/music/* ~/music/ cp -r ~/bspwm-install-ma-dte/music/* ~/music/
cp -r ~/bspwm-install-ma-dte/wallpapers/* ~/wallpapers/ cp -r ~/bspwm-install-ma-dte/wallpapers/* ~/wallpapers/
cp -r ~/bspwm-install-ma-dte/local-files/* ~/.local/
cp -r ~/bspwm-install-ma-dte/user-scripts/* ~/.local/bin #cp ~/bspwm-install-ma-dte/local-files/* ~/.local/
# Not for production version
#read -p "Troubleshooting - Press a key to continue the installation."
# Echo config to files. YES / NO # Echo config to files. YES / NO
echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-" echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
@@ -60,6 +64,10 @@ echo "file=$HOME/wallpapers/default-wallpaper.jpg" >> ~/.config/nitrogen/bg-save
echo "mode=5" >> ~/.config/nitrogen/bg-saved.cfg echo "mode=5" >> ~/.config/nitrogen/bg-saved.cfg
echo "bgcolor=#191a1b" >> ~/.config/nitrogen/bg-saved.cfg echo "bgcolor=#191a1b" >> ~/.config/nitrogen/bg-saved.cfg
# Not for production version
#read -p "Troubleshooting - Press a key to continue the installation."
#chmod +x files. #chmod +x files.
#echo "-'-'-'-'-'-'-'-'-'-'-'-'-" #echo "-'-'-'-'-'-'-'-'-'-'-'-'-"
#echo " " #echo " "
@@ -71,7 +79,13 @@ chmod +x ~/.config/bspwm/bspwmrc
chmod +x ~/.config/sxhkd/sxhkdrc chmod +x ~/.config/sxhkd/sxhkdrc
chmod +x ~/.config/polybar/run-polybar.sh chmod +x ~/.config/polybar/run-polybar.sh
chmod +x ~/.config/rofi/rofi-beats chmod +x ~/.config/rofi/powermenu.sh
chmod +x ~/.config/rofi/rofi-wifi-menu.sh
chmod +x ~/.config/rofi/rofi-beats.sh
# Not for production version
#read -p "Troubleshooting - Press a key to continue the installation."
#echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-" #echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
#echo " " #echo " "