update
19
rc.lua
@ -162,7 +162,7 @@ local tasklist_buttons = gears.table.join(
|
|||||||
awful.client.focus.byidx(-1)
|
awful.client.focus.byidx(-1)
|
||||||
end))
|
end))
|
||||||
|
|
||||||
local function set_wallpaper(s)
|
--[[local function set_wallpaper(s)
|
||||||
-- Wallpaper
|
-- Wallpaper
|
||||||
if beautiful.wallpaper then
|
if beautiful.wallpaper then
|
||||||
local wallpaper = beautiful.wallpaper
|
local wallpaper = beautiful.wallpaper
|
||||||
@ -172,6 +172,23 @@ local function set_wallpaper(s)
|
|||||||
end
|
end
|
||||||
gears.wallpaper.maximized(wallpaper, s, true)
|
gears.wallpaper.maximized(wallpaper, s, true)
|
||||||
end
|
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
|
end
|
||||||
|
|
||||||
----
|
----
|
||||||
|
BIN
themes/zenburn/coding-wallpaper-3440x1440.jpg
Normal file
After Width: | Height: | Size: 1.6 MiB |
BIN
themes/zenburn/colorful_bubbles.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
themes/zenburn/cpu.jpg
Normal file
After Width: | Height: | Size: 2.2 MiB |
BIN
themes/zenburn/dreams.png
Normal file
After Width: | Height: | Size: 4.2 MiB |
BIN
themes/zenburn/dreams.webp
Normal file
After Width: | Height: | Size: 3.0 MiB |
BIN
themes/zenburn/dreams_1920x1080.png
Normal file
After Width: | Height: | Size: 1.8 MiB |
BIN
themes/zenburn/fluid.png
Normal file
After Width: | Height: | Size: 4.1 MiB |
BIN
themes/zenburn/fluid_dark.png
Normal file
After Width: | Height: | Size: 3.3 MiB |
BIN
themes/zenburn/lowpoly.png
Normal file
After Width: | Height: | Size: 347 KiB |
BIN
themes/zenburn/lowpoly_dp.png
Normal file
After Width: | Height: | Size: 266 KiB |
BIN
themes/zenburn/lowpoly_dp.xcf
Normal file
BIN
themes/zenburn/lowpoly_invert.png
Normal file
After Width: | Height: | Size: 354 KiB |
5014
themes/zenburn/material-color-lowpoly-scalable.svg
Normal file
After Width: | Height: | Size: 313 KiB |
@ -11,7 +11,8 @@ local beautiful = require("beautiful")
|
|||||||
|
|
||||||
-- {{{ Main
|
-- {{{ Main
|
||||||
local theme = {}
|
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_normal = "#EDEDDD"
|
||||||
theme.fg_focus = "#F0DFAF"
|
theme.fg_focus = "#F0DFAF"
|
||||||
theme.fg_urgent = "#CC9393"
|
theme.fg_urgent = "#CC9393"
|
||||||
theme.bg_normal = "#4A3F9833"
|
theme.bg_normal = "#4A3F9877"
|
||||||
theme.bg_focus = "#080811CC"
|
theme.bg_focus = "#080811BB"
|
||||||
theme.bg_urgent = "#916A9D33"
|
theme.bg_urgent = "#916A9D77"
|
||||||
theme.bg_systray = theme.bg_normal
|
theme.bg_systray = theme.bg_normal
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
|