Update install.sh
This commit is contained in:
12
install.sh
12
install.sh
@@ -94,7 +94,7 @@ clear
|
|||||||
|
|
||||||
|
|
||||||
# Installation start screen
|
# Installation start screen
|
||||||
FULLUSERNAME=$(awk -v user="$USER" -F":" 'user==$1{print $5}' /etc/passwd)
|
FULLUSERNAME=$(awk -v user="$USER" -F":" 'user==$1{print $5}' /etc/passwd | rev | cut -c 4- | rev)
|
||||||
|
|
||||||
if (whiptail --title "Installation of the Martin Qtile Desktop" --yesno "Hi $FULLUSERNAME do you want to start \nThe M.A.D.E installation ?" 10 50); then
|
if (whiptail --title "Installation of the Martin Qtile Desktop" --yesno "Hi $FULLUSERNAME do you want to start \nThe M.A.D.E installation ?" 10 50); then
|
||||||
echo -e "${GREEN} Okay, let's start the installation"
|
echo -e "${GREEN} Okay, let's start the installation"
|
||||||
@@ -773,14 +773,14 @@ fi
|
|||||||
|
|
||||||
RWALLP="$(find $HOME/Wallpapers -type f | shuf -n 1)"
|
RWALLP="$(find $HOME/Wallpapers -type f | shuf -n 1)"
|
||||||
|
|
||||||
notify-send "Automatically new background and color theme" "Please wait while we find a new background image and some colors to match"
|
notify-send -u low "Automatically new background and color theme" "Please wait while we find a new background image and some colors to match"
|
||||||
|
|
||||||
python3 $HOME/.config/qtile/extract_colors.py $RWALLP
|
python3 $HOME/.config/qtile/extract_colors.py $RWALLP
|
||||||
feh --bg-scale $RWALLP
|
feh --bg-scale $RWALLP
|
||||||
qtile cmd-obj -o cmd -f reload_config
|
qtile cmd-obj -o cmd -f reload_config
|
||||||
kitty +kitten themes --reload-in=all Theme
|
kitty +kitten themes --reload-in=all Theme
|
||||||
|
|
||||||
notify-send "Automatically new background and color theme" "The background image and colors has been updated."
|
notify-send -u low "Automatically new background and color theme" "The background image and colors has been updated."
|
||||||
|
|
||||||
AUTONEWWALLPAPERANDCOLORSBIN'
|
AUTONEWWALLPAPERANDCOLORSBIN'
|
||||||
|
|
||||||
@@ -1577,11 +1577,11 @@ keys = [
|
|||||||
|
|
||||||
# Grow windows. If current window is on the edge of screen and direction
|
# Grow windows. If current window is on the edge of screen and direction
|
||||||
# will be to screen edge - window would shrink.
|
# will be to screen edge - window would shrink.
|
||||||
Key([mod, "control"], "h", lazy.layout.grow_left(), desc="Grow window to the left"),
|
Key([mod, "control"], "h", lazy.layout.grow_left(), lazy.layout.grow(), desc="Grow window to the left"),
|
||||||
Key([mod, "control"], "l", lazy.layout.grow_right(), desc="Grow window to the right"),
|
Key([mod, "control"], "l", lazy.layout.grow_right(), lazy.layout.shrink(), desc="Grow window to the right"),
|
||||||
Key([mod, "control"], "j", lazy.layout.grow_down(), desc="Grow window down"),
|
Key([mod, "control"], "j", lazy.layout.grow_down(), desc="Grow window down"),
|
||||||
Key([mod, "control"], "k", lazy.layout.grow_up(), desc="Grow window up"),
|
Key([mod, "control"], "k", lazy.layout.grow_up(), desc="Grow window up"),
|
||||||
Key([mod], "n", lazy.layout.normalize(), desc="Reset all window sizes"),
|
Key([mod, "control"], "n", lazy.layout.normalize(), lazy.layout.reset(), desc="Reset all window sizes"),
|
||||||
|
|
||||||
# Toggle between split and unsplit sides of stack.
|
# Toggle between split and unsplit sides of stack.
|
||||||
# Split = all windows displayed
|
# Split = all windows displayed
|
||||||
|
|||||||
Reference in New Issue
Block a user