mirror of
https://github.com/WarrenHood/dotfiles.git
synced 2025-04-29 20:04:59 +01:00
Add volume icon, compositor, and network manager
This commit is contained in:
parent
d15d1b9f23
commit
1f67f81bf2
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue