This commit is contained in:
Surferlul 2021-08-07 22:20:22 +02:00
parent 64387e3e5f
commit 7f28a4eb85
15 changed files with 5037 additions and 5 deletions

19
rc.lua
View File

@ -162,7 +162,7 @@ local tasklist_buttons = gears.table.join(
awful.client.focus.byidx(-1)
end))
local function set_wallpaper(s)
--[[local function set_wallpaper(s)
-- Wallpaper
if beautiful.wallpaper then
local wallpaper = beautiful.wallpaper
@ -172,6 +172,23 @@ local function set_wallpaper(s)
end
gears.wallpaper.maximized(wallpaper, s, true)
end
end--]]
--[[local function set_wallpaper(s)
wallpaper_safety = function(arg) if type(arg) == "table" then return tostring( arg[s.index] or "" )
elseif type(arg) == "string" then return arg
else return ""
end
end
gears.wallpaper.maximized( wallpaper_safety( beautiful.wallpaper ), s, true )
end--]]
local function set_wallpaper(s)
if s.geometry["width"] == 1920 and s.geometry["height"] == 1080 then
gears.wallpaper.maximized( beautiful.wallpaper[1], s, true )
else
gears.wallpaper.maximized( beautiful.wallpaper[2], s, true )
end
end
----

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

BIN
themes/zenburn/cpu.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

BIN
themes/zenburn/dreams.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 MiB

BIN
themes/zenburn/dreams.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

BIN
themes/zenburn/fluid.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

BIN
themes/zenburn/lowpoly.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 347 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 266 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 354 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 313 KiB

View File

@ -11,7 +11,8 @@ local beautiful = require("beautiful")
-- {{{ Main
local theme = {}
theme.wallpaper = "/home/surferlul/.config/awesome/themes/zenburn/artix_wallpaper.png"
theme.dir = "/home/surferlul/.config/awesome/themes/zenburn/"
theme.wallpaper = { theme.dir .. "dreams_1920x1080.png" , theme.dir .. "dreams.png" }
-- }}}
@ -22,9 +23,9 @@ theme.font = "sans 8"
theme.fg_normal = "#EDEDDD"
theme.fg_focus = "#F0DFAF"
theme.fg_urgent = "#CC9393"
theme.bg_normal = "#4A3F9833"
theme.bg_focus = "#080811CC"
theme.bg_urgent = "#916A9D33"
theme.bg_normal = "#4A3F9877"
theme.bg_focus = "#080811BB"
theme.bg_urgent = "#916A9D77"
theme.bg_systray = theme.bg_normal
-- }}}