LINUX.ORG.RU

Значения (после знака равенства) обрамить кавычками, октоторпы заменить на двойной дефис — и можно вставлять в файл темы.

krakatau
()
Ответ на: комментарий от krakatau
-- dwm, awesome3 theme

--{{{ Main
require("awful.util")

theme = {}

home          = os.getenv("HOME")
config        = awful.util.getdir("config")
shared        = "/usr/share/awesome"
if not awful.util.file_readable(shared .. "/icons/awesome16.png") then
    shared    = "/usr/share/local/awesome"
end
sharedicons   = shared .. "/icons"
sharedthemes  = shared .. "/themes"
themes        = config .. "/themes"
themename     = "/dwm"
if not awful.util.file_readable(themes .. themename .. "/theme.lua") then
       themes = sharedthemes
end
themedir      = themes .. themename

wallpaper1    = themedir .. "/background.jpg"
wallpaper2    = themedir .. "/background.png"
wallpaper3    = sharedthemes .. "/zenburn/zenburn-background.png"
wallpaper4    = sharedthemes .. "/default/background.png"
wpscript      = home .. "/.wallpaper"

if awful.util.file_readable(wallpaper1) then
        theme.wallpaper_cmd = { "awsetbg " .. wallpaper1 }
elseif awful.util.file_readable(wallpaper2) then
-- dwm, awesome3 theme 
 
--{{{ Main 
require("awful.util") 
 
theme = {} 
 
home          = os.getenv("HOME") 
config        = awful.util.getdir("config") 
shared        = "/usr/share/awesome" 
if not awful.util.file_readable(shared .. "/icons/awesome16.png") then 
    shared    = "/usr/share/local/awesome" 
end 
sharedicons   = shared .. "/icons" 
sharedthemes  = shared .. "/themes" 
themes        = config .. "/themes" 
themename     = "/dwm" 
if not awful.util.file_readable(themes .. themename .. "/theme.lua") then 
       themes = sharedthemes 
end 
themedir      = themes .. themename 
 
wallpaper1    = themedir .. "/background.jpg" 
wallpaper2    = themedir .. "/background.png" 
wallpaper3    = sharedthemes .. "/zenburn/zenburn-background.png" 
wallpaper4    = sharedthemes .. "/default/background.png" 
wpscript      = home .. "/.wallpaper" 
 
if awful.util.file_readable(wallpaper1) then 
        theme.wallpaper_cmd = { "awsetbg " .. wallpaper1 } 
elseif awful.util.file_readable(wallpaper2) then 
        theme.wallpaper_cmd = { "awsetbg " .. wallpaper2 } 
elseif awful.util.file_readable(wpscript) then 
        theme.wallpaper_cmd = { "sh " .. wpscript } 
elseif awful.util.file_readable(wallpaper3) then 
        theme.wallpaper_cmd = { "awsetbg " .. wallpaper3 } 
else 
        theme.wallpaper_cmd = { "awsetbg " .. wallpaper4 } 
end 
 
if awful.util.file_readable(config .. "/vain/init.lua") then 
    theme.useless_gap_width  = "3" 
end 
--}}} 
 
-- theme.font          = "Monospace 8" 
-- theme.font          = "fixed 8" 
-- theme.font          = "Sans 8" 
theme.font          = "Terminus 8" 
-- theme.font          = "FreeMono 9" 
-- theme.font          = "Droid Sans Mono 8" 
 
theme.bg_normal     = "#cccccc" 
theme.bg_focus      = "#0066ff" 
theme.bg_urgent     = "#ffdd00" 
 
theme.fg_normal     = "#000000" 
theme.fg_focus      = "#ffffff" 
theme.fg_urgent     = "#111111" 
 
theme.border_width  = 2 
theme.border_normal = "#cccccc" 
theme.border_focus  = "#0066ff" 
 
theme.taglist_squares_sel    = themedir .. "/tasklist_f.png" 
theme.taglist_squares_unsel  = themedir .. "/tasklist_u.png" 
theme.tasklist_floating_icon = themedir .. "/floating.png" 
 
theme.titlebar_close_button_normal = sharedthemes .. "/default/titlebar/close.png"
theme.titlebar_close_button_focus  = sharedthemes .. "/default/titlebar/closer.png" 
 
theme.menu_submenu_icon = sharedthemes .. "/default/submenu.png" 
theme.awesome_icon = sharedicons .. "/awesome16.png" 
 
return theme

осом слетает

netcat ★★
() автор топика
Ответ на: комментарий от krakatau

rc.lua:378 bad argument #-1 to '?' (string expected, got nil) 379 - та же херня.

тема не цепляется, эти ошибки вылазят при фокусе на окне

netcat ★★
() автор топика

И вообще больше так не делай, создавай собственную тему и пихай в .config/awesome/themes/<theme-name>, иначе в следующий раз при переустановке/обновлении файл перепишется.

vladkuzm
()
Ответ на: комментарий от vladkuzm
client.add_signal("focus", function(c) c.border_color = beautiful.border_focus end)
client.add_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
netcat ★★
() автор топика
Ответ на: комментарий от netcat

У вас отсутствуют значения theme.border_focus и normal, добавьте в theme.lua что-то вроде:

-- {{{ Borders
theme.border_width = "1"
theme.border_normal = "#3F3F3F"
theme.border_focus = "#6F6F6F"
theme.border_marked = "#CC9393"

И вообще вот на будущее: https://github.com/mikar/awesome-themes

vladkuzm
()
Ответ на: комментарий от vladkuzm

в комментах выше есть ссылки и на конфиг и на тему. там все присутствует. не в этом дело

netcat ★★
() автор топика
Ответ на: комментарий от vladkuzm

а,все ок,спасибо,я в конфиге путь к теме неправильный прописал

netcat ★★
() автор топика
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.