Add volume icon, compositor, and network manager

This commit is contained in:
Warren Hood 2022-11-25 23:15:19 +02:00
parent d15d1b9f23
commit 1f67f81bf2
3 changed files with 7 additions and 3 deletions

View file

@ -576,3 +576,7 @@ client.connect_signal("focus", function(c) c.border_color = beautiful.border_foc
client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end) client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
-- }}} -- }}}
-- Stuff to start
awful.spawn.once("picom") -- Compositor
awful.spawn.once("nm-applet") -- Network Manager applet
awful.spawn.once("volumeicon") -- Volume icon

View file

@ -13,7 +13,7 @@ local theme = {}
theme.font = "Mononoki Nerd Font 8" theme.font = "Mononoki Nerd Font 8"
theme.bg_normal = "#222222" theme.bg_normal = "#222222"
theme.bg_focus = "#55CC55" theme.bg_focus = "#55bb55"
theme.bg_urgent = "#cc0088" theme.bg_urgent = "#cc0088"
theme.bg_minimize = "#444444" theme.bg_minimize = "#444444"
theme.bg_systray = theme.bg_normal theme.bg_systray = theme.bg_normal
@ -26,7 +26,7 @@ theme.fg_minimize = "#ffffff"
theme.useless_gap = dpi(6) theme.useless_gap = dpi(6)
theme.border_width = dpi(2) theme.border_width = dpi(2)
theme.border_normal = "#333333" theme.border_normal = "#333333"
theme.border_focus = "#55CC55" theme.border_focus = "#55bb55"
theme.border_marked = "#900090" theme.border_marked = "#900090"
-- There are other variable sets -- There are other variable sets

2
setup
View file

@ -12,7 +12,7 @@ else
echo "Updating Arch" echo "Updating Arch"
sudo pacman -Syyu sudo pacman -Syyu
echo "Installing tools/utils" echo "Installing tools/utils"
sudo pacman -S ripgrep fd neovim make stow tmux awesome dmenu arandr sudo pacman -S ripgrep fd neovim make stow tmux awesome dmenu arandr volumeicon picom nitrogen network-manager-applet
fi fi