From 1f67f81bf2c1b34b656c6389eec41ee02db6b2a9 Mon Sep 17 00:00:00 2001 From: Warren Hood Date: Fri, 25 Nov 2022 23:15:19 +0200 Subject: [PATCH] Add volume icon, compositor, and network manager --- awesome/.config/awesome/rc.lua | 4 ++++ awesome/.config/awesome/theme.lua | 4 ++-- setup | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua index 9948db2..fc3be7c 100644 --- a/awesome/.config/awesome/rc.lua +++ b/awesome/.config/awesome/rc.lua @@ -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) -- }}} +-- Stuff to start +awful.spawn.once("picom") -- Compositor +awful.spawn.once("nm-applet") -- Network Manager applet +awful.spawn.once("volumeicon") -- Volume icon diff --git a/awesome/.config/awesome/theme.lua b/awesome/.config/awesome/theme.lua index 6d7bebc..f321535 100644 --- a/awesome/.config/awesome/theme.lua +++ b/awesome/.config/awesome/theme.lua @@ -13,7 +13,7 @@ local theme = {} theme.font = "Mononoki Nerd Font 8" theme.bg_normal = "#222222" -theme.bg_focus = "#55CC55" +theme.bg_focus = "#55bb55" theme.bg_urgent = "#cc0088" theme.bg_minimize = "#444444" theme.bg_systray = theme.bg_normal @@ -26,7 +26,7 @@ theme.fg_minimize = "#ffffff" theme.useless_gap = dpi(6) theme.border_width = dpi(2) theme.border_normal = "#333333" -theme.border_focus = "#55CC55" +theme.border_focus = "#55bb55" theme.border_marked = "#900090" -- There are other variable sets diff --git a/setup b/setup index 9651e59..a88ff81 100755 --- a/setup +++ b/setup @@ -12,7 +12,7 @@ else echo "Updating Arch" sudo pacman -Syyu 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