From 88ea27b400baeaf7d401f02bff1c8cf651c94e4e Mon Sep 17 00:00:00 2001
From: zachir <zachir@librem.one>
Date: Thu, 20 Apr 2023 14:44:00 -0500
Subject: Theme! Now featuring lots of lovely green

---
 awesome/themes/default/theme.lua | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'awesome/themes/default')

diff --git a/awesome/themes/default/theme.lua b/awesome/themes/default/theme.lua
index 221e0d0..9f199db 100644
--- a/awesome/themes/default/theme.lua
+++ b/awesome/themes/default/theme.lua
@@ -15,8 +15,8 @@ theme.font          = "mononoki Nerd Font Mono 18"
 theme.font2         = "mononoki Nerd Font Mono 12"
 
 theme.bg_normal     = "#000000"
-theme.bg_focus      = "#39c1ed"
-theme.bg_accent     = "#198844"
+theme.bg_focus      = "#198844"
+theme.bg_accent     = "#555555"
 theme.bg_urgent     = "#ff0000"
 theme.bg_minimize   = "#444444"
 theme.bg_systray    = theme.bg_focus
-- 
cgit v1.2.3


From 59bd2b89d3f772c0c1cf16316a26f5c86b108fec Mon Sep 17 00:00:00 2001
From: zachir <zachir@librem.one>
Date: Thu, 20 Apr 2023 14:45:56 -0500
Subject: fix awesome (bling) and don't swallow virtualbox

---
 awesome/rc.lua                   | 3 ++-
 awesome/themes/default/theme.lua | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

(limited to 'awesome/themes/default')

diff --git a/awesome/rc.lua b/awesome/rc.lua
index 002d609..634a650 100644
--- a/awesome/rc.lua
+++ b/awesome/rc.lua
@@ -17,7 +17,6 @@ local naughty = require("naughty")
 package.loaded["naughty.dbus"] = {}
 local menubar = require("menubar")
 local hotkeys_popup = require("awful.hotkeys_popup")
-local bling = require("bling")
 -- Enable hotkeys help widget for VIM and other apps
 -- when client with a matching name is opened:
 require("awful.hotkeys_popup.keys")
@@ -62,6 +61,7 @@ beautiful.init(theme.dir .. "/theme.lua")
 beautiful.useless_gap = 5
 beautiful.wallpaper = awful.util.get_configuration_dir() .. "../../background.png"
 font = beautiful.font or "mononoki Nerd Font Mono 18"
+local bling = require("bling")
 
 -- Widget definitions/initializations
 
@@ -769,6 +769,7 @@ awful.rules.rules = {
           "sptrem",
           "qpwgraph",
           "QjackCtl",
+          "Tk",
           "gcr-prompter"
         }
       },
diff --git a/awesome/themes/default/theme.lua b/awesome/themes/default/theme.lua
index 9f199db..0d8b7b8 100644
--- a/awesome/themes/default/theme.lua
+++ b/awesome/themes/default/theme.lua
@@ -138,7 +138,7 @@ You might just want to copy that whole part into your theme.lua and start adjust
 --]]
 -- LuaFormatter off
 -- window swallowing
-theme.dont_swallow_classname_list = { "firefox", "Gimp", "Lutris" } -- list of class names that should not be swallowed
+theme.dont_swallow_classname_list = { "firefox", "Gimp", "Lutris", "VirtualBox Manager", "VirtualBox Machine" } -- list of class names that should not be swallowed
 theme.dont_swallow_filter_activated = true -- whether the filter above should be active
 
 -- flash focus
-- 
cgit v1.2.3