Update install.sh
This commit is contained in:
22
install.sh
22
install.sh
@@ -195,6 +195,7 @@ cat <<QTILEAUTOSTART > ~/.config/qtile/autostart.sh
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
pgrep -x picom > /dev/null || picom -b &
|
pgrep -x picom > /dev/null || picom -b &
|
||||||
amixer set Master 10% &
|
amixer set Master 10% &
|
||||||
|
dunst &
|
||||||
numlockx on &
|
numlockx on &
|
||||||
#nitrogen --restore &
|
#nitrogen --restore &
|
||||||
|
|
||||||
@@ -273,7 +274,7 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Nerd Fonts START - https://www.nerdfonts.com/font-downloads - - - - - - - - - - - - - - - -
|
# Nerd Fonts START - https://www.nerdfonts.com/font-downloads - https://www.nerdfonts.com/cheat-sheet - - -
|
||||||
if [ ! -d ~/.fonts ]; then
|
if [ ! -d ~/.fonts ]; then
|
||||||
mkdir -p ~/.fonts
|
mkdir -p ~/.fonts
|
||||||
|
|
||||||
@@ -2115,10 +2116,10 @@ keys = [
|
|||||||
Key([mod, "shift"], "r", lazy.spawncmd(), desc="Spawn a command using a prompt widget"),
|
Key([mod, "shift"], "r", lazy.spawncmd(), desc="Spawn a command using a prompt widget"),
|
||||||
|
|
||||||
# Audio
|
# Audio
|
||||||
Key([mod, "mod1"], "Up", lazy.spawn("amixer set Master 2%+"), desc='Volume Up'),
|
Key([mod, "mod1"], "Up", lazy.spawn("amixer set Master 1%+"), desc='Volume Up'),
|
||||||
Key([mod, "mod1"], "Down", lazy.spawn("amixer set Master 5%-"), desc='Volume down'),
|
Key([mod, "mod1"], "Down", lazy.spawn("amixer set Master 3%-"), desc='Volume down'),
|
||||||
Key([mod, "mod1"], "m", lazy.spawn("amixer set Master toggle"), desc='Volume Mute'),
|
Key([mod, "mod1"], "m", lazy.spawn("amixer set Master toggle"), desc='Volume Mute'),
|
||||||
|
|
||||||
# Default
|
# Default
|
||||||
Key([mod], "h", lazy.layout.left(), desc="Move focus to left"),
|
Key([mod], "h", lazy.layout.left(), desc="Move focus to left"),
|
||||||
Key([mod], "l", lazy.layout.right(), desc="Move focus to right"),
|
Key([mod], "l", lazy.layout.right(), desc="Move focus to right"),
|
||||||
@@ -2273,12 +2274,14 @@ layouts = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
widget_defaults = dict(
|
widget_defaults = dict(
|
||||||
font="sans",
|
font="DejaVu Sans Mono, sans",
|
||||||
fontsize=14,
|
fontsize=14,
|
||||||
padding=3,
|
padding=5,
|
||||||
)
|
)
|
||||||
extension_defaults = widget_defaults.copy()
|
extension_defaults = widget_defaults.copy()
|
||||||
|
|
||||||
|
# Bar widgets - https://docs.qtile.org/en/latest/manual/ref/widgets.html
|
||||||
|
|
||||||
screens = [
|
screens = [
|
||||||
Screen(
|
Screen(
|
||||||
top=bar.Bar(
|
top=bar.Bar(
|
||||||
@@ -2299,9 +2302,12 @@ screens = [
|
|||||||
#),
|
#),
|
||||||
# NB Wayland is incompatible with Systray, consider using StatusNotifier
|
# NB Wayland is incompatible with Systray, consider using StatusNotifier
|
||||||
# widget.StatusNotifier(),
|
# widget.StatusNotifier(),
|
||||||
widget.Systray(icon_size=20),
|
widget.Systray(fmt="\udb84 {}", icon_size=20),
|
||||||
widget.Wallpaper(directory="~/Wallpapers/", label="", random_selection="True"),
|
widget.Wallpaper(directory="~/Wallpapers/", label="", random_selection="True"),
|
||||||
widget.Clock(format="%H:%M %A %d-%m-%Y %p"),
|
widget.Spacer(length=5),
|
||||||
|
widget.Volume(fmt="\ue638 {}"),
|
||||||
|
widget.Spacer(length=5),
|
||||||
|
widget.Clock(fmt="\ue641 {}",format="%H:%M %A %d-%m-%Y %p"),
|
||||||
#widget.QuickExit(default_text="LOGOUT", countdown_format=" {} "),
|
#widget.QuickExit(default_text="LOGOUT", countdown_format=" {} "),
|
||||||
widget.Spacer(length=20),
|
widget.Spacer(length=20),
|
||||||
], 25, # Define bar height
|
], 25, # Define bar height
|
||||||
|
|||||||
Reference in New Issue
Block a user