[awesome] add custom solarized icons
BIN
home/.config/awesome/icons/layouts/cornerne.png
Normal file
After Width: | Height: | Size: 915 B |
BIN
home/.config/awesome/icons/layouts/cornernw.png
Normal file
After Width: | Height: | Size: 916 B |
BIN
home/.config/awesome/icons/layouts/cornerse.png
Normal file
After Width: | Height: | Size: 915 B |
BIN
home/.config/awesome/icons/layouts/cornersw.png
Normal file
After Width: | Height: | Size: 915 B |
BIN
home/.config/awesome/icons/layouts/dwindle.png
Normal file
After Width: | Height: | Size: 913 B |
BIN
home/.config/awesome/icons/layouts/fairh.png
Normal file
After Width: | Height: | Size: 907 B |
BIN
home/.config/awesome/icons/layouts/fairv.png
Normal file
After Width: | Height: | Size: 908 B |
BIN
home/.config/awesome/icons/layouts/floating.png
Normal file
After Width: | Height: | Size: 916 B |
BIN
home/.config/awesome/icons/layouts/fullscreen.png
Normal file
After Width: | Height: | Size: 939 B |
BIN
home/.config/awesome/icons/layouts/magnifier.png
Normal file
After Width: | Height: | Size: 922 B |
BIN
home/.config/awesome/icons/layouts/max.png
Normal file
After Width: | Height: | Size: 942 B |
BIN
home/.config/awesome/icons/layouts/spiral.png
Normal file
After Width: | Height: | Size: 917 B |
BIN
home/.config/awesome/icons/layouts/tile.png
Normal file
After Width: | Height: | Size: 911 B |
BIN
home/.config/awesome/icons/layouts/tilebottom.png
Normal file
After Width: | Height: | Size: 912 B |
BIN
home/.config/awesome/icons/layouts/tileleft.png
Normal file
After Width: | Height: | Size: 911 B |
BIN
home/.config/awesome/icons/layouts/tiletop.png
Normal file
After Width: | Height: | Size: 912 B |
|
@ -3,7 +3,7 @@ local xresources = require("beautiful.xresources")
|
|||
local dpi = xresources.apply_dpi
|
||||
|
||||
local gfs = require("gears.filesystem")
|
||||
local themes_path = gfs.get_themes_dir()
|
||||
local layout_icons_path = gfs.get_configuration_dir() .. "icons/layouts/"
|
||||
|
||||
local spawn = require("awful.spawn")
|
||||
local utils = require("../utils")
|
||||
|
@ -69,23 +69,21 @@ theme.taglist_squares_unsel = theme_assets.taglist_squares_unsel(
|
|||
taglist_square_size, theme.fg_normal
|
||||
)
|
||||
|
||||
theme.layout_fairh = themes_path .. "default/layouts/fairhw.png"
|
||||
theme.layout_fairv = themes_path .. "default/layouts/fairvw.png"
|
||||
theme.layout_floating = themes_path .. "default/layouts/floatingw.png"
|
||||
theme.layout_magnifier = themes_path .. "default/layouts/magnifierw.png"
|
||||
theme.layout_max = themes_path .. "default/layouts/maxw.png"
|
||||
theme.layout_fullscreen = themes_path .. "default/layouts/fullscreenw.png"
|
||||
theme.layout_tilebottom = themes_path .. "default/layouts/tilebottomw.png"
|
||||
theme.layout_tileleft = themes_path .. "default/layouts/tileleftw.png"
|
||||
theme.layout_tile = themes_path .. "default/layouts/tilew.png"
|
||||
theme.layout_tiletop = themes_path .. "default/layouts/tiletopw.png"
|
||||
theme.layout_spiral = themes_path .. "default/layouts/spiralw.png"
|
||||
theme.layout_dwindle = themes_path .. "default/layouts/dwindlew.png"
|
||||
theme.layout_cornernw = themes_path .. "default/layouts/cornernww.png"
|
||||
theme.layout_cornerne = themes_path .. "default/layouts/cornernew.png"
|
||||
theme.layout_cornersw = themes_path .. "default/layouts/cornersww.png"
|
||||
theme.layout_cornerse = themes_path .. "default/layouts/cornersew.png"
|
||||
theme.layout_fairh = layout_icons_path .. "fairh.png"
|
||||
theme.layout_fairv = layout_icons_path .. "fairv.png"
|
||||
theme.layout_floating = layout_icons_path .. "floating.png"
|
||||
theme.layout_magnifier = layout_icons_path .. "magnifier.png"
|
||||
theme.layout_max = layout_icons_path .. "max.png"
|
||||
theme.layout_fullscreen = layout_icons_path .. "fullscreen.png"
|
||||
theme.layout_tilebottom = layout_icons_path .. "tilebottom.png"
|
||||
theme.layout_tileleft = layout_icons_path .. "tileleft.png"
|
||||
theme.layout_tile = layout_icons_path .. "tile.png"
|
||||
theme.layout_tiletop = layout_icons_path .. "tiletop.png"
|
||||
theme.layout_spiral = layout_icons_path .. "spiral.png"
|
||||
theme.layout_dwindle = layout_icons_path .. "dwindle.png"
|
||||
theme.layout_cornernw = layout_icons_path .. "cornernw.png"
|
||||
theme.layout_cornerne = layout_icons_path .. "cornerne.png"
|
||||
theme.layout_cornersw = layout_icons_path .. "cornersw.png"
|
||||
theme.layout_cornerse = layout_icons_path .. "cornerse.png"
|
||||
|
||||
return theme
|
||||
|
||||
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|
||||
|
|