added powermenu
This commit is contained in:
@@ -7,8 +7,10 @@
|
||||
local colors = require("theme.crylia.colors")
|
||||
local dpi = require("beautiful.xresources").apply_dpi
|
||||
local gears = require("gears")
|
||||
local awful = require("awful")
|
||||
|
||||
-- Note that most variables wont change anything since almost everything you see is individually themed
|
||||
-- Icon directory path
|
||||
local icondir = awful.util.getdir("config") .. "theme/crylia/assets/icons/titlebar/"
|
||||
|
||||
Theme.font = "JetBrains Mono, Bold"
|
||||
|
||||
@@ -23,9 +25,9 @@ Theme.fg_focus = colors.color["White"]
|
||||
Theme.fg_urgent = colors.color["White"]
|
||||
Theme.fg_minimize = colors.color["White"]
|
||||
|
||||
Theme.useless_gap = dpi(5) -- Change this if you dont like window gaps
|
||||
Theme.border_width = dpi(1) -- Change this if you dont like borders
|
||||
Theme.border_normal = colors.color["Grey600"]
|
||||
Theme.useless_gap = dpi(5) -- Change this to 0 if you dont like window gaps
|
||||
Theme.border_width = dpi(0) -- Change this to 0 if you dont like borders
|
||||
Theme.border_normal = colors.color["Grey800"]
|
||||
--Theme.border_focus = colors.color["Red"] -- Doesnt work, no idea why; workaround is in signals.lua
|
||||
Theme.border_marked = colors.color["Red400"]
|
||||
|
||||
@@ -35,8 +37,8 @@ Theme.menu_width = dpi(200)
|
||||
Theme.menu_bg_normal = colors.color["Grey900"]
|
||||
Theme.menu_bg_focus = colors.color["Grey800"]
|
||||
Theme.menu_fg_focus = colors.color["White"]
|
||||
Theme.menu_border_color = colors.color["Grey600"]
|
||||
Theme.menu_border_width = dpi(1)
|
||||
Theme.menu_border_color = colors.color["Grey800"]
|
||||
Theme.menu_border_width = dpi(0)
|
||||
|
||||
Theme.taglist_fg_focus = colors.color["Grey900"]
|
||||
Theme.taglist_bg_focus = colors.color["White"]
|
||||
@@ -44,19 +46,23 @@ Theme.taglist_bg_focus = colors.color["White"]
|
||||
Theme.tooltip_border_color = colors.color["Grey700"]
|
||||
Theme.tooltip_bg = colors.color["Grey800"]
|
||||
Theme.tooltip_fg = colors.color["White"]
|
||||
Theme.tooltip_border_width = dpi(1)
|
||||
Theme.tooltip_border_width = dpi(0)
|
||||
Theme.tooltip_shape = function (cr, width, heigth)
|
||||
gears.shape.rounded_rect(cr, width, heigth, 10)
|
||||
end
|
||||
|
||||
Theme.notification_bg = colors.color["Grey900"]
|
||||
Theme.notification_fg = colors.color["White"]
|
||||
Theme.notification_border_width = dpi(1)
|
||||
Theme.notification_border_color = colors.color["Grey800"]
|
||||
Theme.notification_border_width = dpi(0)
|
||||
Theme.notification_border_color = colors.color["Grey900"]
|
||||
Theme.notification_shape = function (cr, width, heigth)
|
||||
gears.shape.rounded_rect(cr, width, heigth, 10)
|
||||
end
|
||||
Theme.notification_margin = dpi(10)
|
||||
Theme.notification_max_width = dpi(400)
|
||||
Theme.notification_max_height = dpi(1000)
|
||||
Theme.notification_icon_size = dpi(40)
|
||||
Theme.notification_icon_size = dpi(40)
|
||||
|
||||
Theme.titlebar_close_button_normal = icondir .. "close.svg"
|
||||
Theme.titlebar_maximized_button_normal = icondir .. "maximize.svg"
|
||||
Theme.titlebar_minimize_button_normal = icondir .. "minimize.svg"
|
||||
|
||||
Reference in New Issue
Block a user