X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=etc%2Flookcommon_clean.lua;h=49bf70af24fb4b10fb18429c5fb7316b657c8f87;hb=20070506;hp=43399d963721913ef0454ef10cf1f861b757aaee;hpb=de22e45179cb3bafa490294d31d47f361047a30a;p=ion3.git diff --git a/etc/lookcommon_clean.lua b/etc/lookcommon_clean.lua index 43399d9..49bf70a 100644 --- a/etc/lookcommon_clean.lua +++ b/etc/lookcommon_clean.lua @@ -1,5 +1,93 @@ --- Settings common to the "clean" styles. +-- Common settings for the "clean" styles -dopath("lookcommon_clean_stdisp") -dopath("lookcommon_clean_tab") -dopath("lookcommon_clean_frame") +de.defstyle("frame", { + background_colour = "#000000", + de.substyle("quasiactive", { + -- Something detached from the frame is active + padding_colour = "#901010", + }), + de.substyle("userattr1", { + -- For user scripts + padding_colour = "#009010", + }), +}) + +de.defstyle("frame-tiled", { + shadow_pixels = 0, + highlight_pixels = 0, + padding_pixels = 1, + spacing = 1, +}) + +de.defstyle("frame-tiled-alt", { + bar = "none", +}) + +de.defstyle("frame-floating", { + bar = "shaped", + padding_pixels = 0, +}) + + +de.defstyle("actnotify", { + shadow_colour = "#c04040", + highlight_colour = "#c04040", + background_colour = "#901010", + foreground_colour = "#eeeeee", +}) + +de.defstyle("tab", { + de.substyle("*-*-*-unselected-activity", { + shadow_colour = "#c04040", + highlight_colour = "#c04040", + background_colour = "#901010", + foreground_colour = "#eeeeee", + }), + + de.substyle("*-*-*-selected-activity", { + shadow_colour = "#c04040", + highlight_colour = "#c04040", + background_colour = "#b03030", + foreground_colour = "#ffffff", + }), + + de.substyle("*-*-*-tabnumber", { + background_colour = "black", + foreground_colour = "green", + }), +}) + +de.defstyle("tab-frame", { + spacing = 1, +}) + +de.defstyle("tab-frame-floating", { + spacing = 0, +}) + +de.defstyle("tab-menuentry", { + text_align = "left", +}) + +de.defstyle("tab-menuentry-big", { + font = "-*-helvetica-medium-r-normal-*-17-*-*-*-*-*-*-*", + padding_pixels = 7, +}) + + +de.defstyle("stdisp", { + shadow_pixels = 0, + highlight_pixels = 0, + text_align = "left", + background_colour = "#000000", + foreground_colour = "grey", + font="-misc-fixed-medium-r-*-*-13-*-*-*-*-60-*-*", + + de.substyle("important", { + foreground_colour = "green", + }), + + de.substyle("critical", { + foreground_colour = "red", + }), +})