From f42a3a2cc941e34dd938b1e6bc24785a44781db2 Mon Sep 17 00:00:00 2001 From: delta Date: Sun, 21 May 2023 10:12:46 +0200 Subject: major update of awesome config add new icons, switch over to using stylesheets instead of gears.color.recolor_image, add a music widget to the panel, optimize services in common.lua, fix the application lense filtering and increase the update rate of services in common.lua Signed-off-by: delta --- .config/awesome/misc/cfg.lua | 40 ++++++++++++++++++++++++++++++++++++---- 1 file changed, 36 insertions(+), 4 deletions(-) (limited to '.config/awesome/misc/cfg.lua') diff --git a/.config/awesome/misc/cfg.lua b/.config/awesome/misc/cfg.lua index 0d9bcba..05534b1 100644 --- a/.config/awesome/misc/cfg.lua +++ b/.config/awesome/misc/cfg.lua @@ -1,6 +1,38 @@ -local c = { - titlebars_enabled = false, - terminal = "wezterm" +local awful = require "awful" +local phosphor = require "assets.phosphor" + +local cfg = { + terminal = "wezterm", + tags = { + { + layout = awful.layout.suit.floating, + selected = true, + icon = phosphor.house_fill + }, + { + layout = awful.layout.suit.floating, + icon = phosphor.browser_fill + }, + { + layout = awful.layout.suit.tile.left, + master_width_factor = 0.7, + icon = phosphor.discord_logo_fill + }, + { + layout = awful.layout.suit.tile.top, + master_width_factor = 0.2, + icon = phosphor.spotify_logo_fill + }, + { + layout = awful.layout.suit.tile.right, + master_width_factor = 0.7, + icon = phosphor.code_fill + }, + { + layout = awful.layout.suit.floating, + icon = phosphor.game_controller_fill + } + } } -return c +return cfg -- cgit v1.2.3