Use tr [:lower:] [:upper:] instead of the a-z one
[awesome.git] / themes / default / theme.lua.in
blobefc87b04bcac73f39547b1237b677fb4dd421f26
1 ---------------------------
2 -- Default awesome theme --
3 ---------------------------
5 theme = {}
7 theme.font = "sans 8"
9 theme.bg_normal = "#222222"
10 theme.bg_focus = "#535d6c"
11 theme.bg_urgent = "#ff0000"
12 theme.bg_minimize = "#444444"
14 theme.fg_normal = "#aaaaaa"
15 theme.fg_focus = "#ffffff"
16 theme.fg_urgent = "#ffffff"
17 theme.fg_minimize = " #ffffff"
19 theme.border_width = "1"
20 theme.border_normal = "#000000"
21 theme.border_focus = "#535d6c"
22 theme.border_marked = "#91231c"
24 -- There are another variables sets
25 -- overriding the default one when
26 -- defined, the sets are:
27 -- [taglist|tasklist]_[bg|fg]_[focus|urgent]
28 -- titlebar_[bg|fg]_[normal|focus]
29 -- Example:
30 --taglist_bg_focus = #ff0000
32 -- Display the taglist squares
33 theme.taglist_squares_sel = "@AWESOME_THEMES_PATH@/default/taglist/squarefw.png"
34 theme.taglist_squares_unsel = "@AWESOME_THEMES_PATH@/default/taglist/squarew.png"
36 theme.tasklist_floating_icon = "@AWESOME_THEMES_PATH@/default/tasklist/floatingw.png"
38 -- Variables set for theming menu
39 -- menu_[bg|fg]_[normal|focus]
40 -- menu_[border_color|border_width]
41 theme.menu_submenu_icon = "@AWESOME_THEMES_PATH@/default/submenu.png"
42 theme.menu_height = "15"
43 theme.menu_width = "100"
45 -- You can add as many variables as
46 -- you wish and access them by using
47 -- beautiful.variable in your rc.lua
48 --bg_widget = #cc0000
50 -- Define the image to load
51 theme.titlebar_close_button_normal = "@AWESOME_THEMES_PATH@/default/titlebar/close_normal.png"
52 theme.titlebar_close_button_focus = "@AWESOME_THEMES_PATH@/default/titlebar/close_focus.png"
54 theme.titlebar_ontop_button_normal_inactive = "@AWESOME_THEMES_PATH@/default/titlebar/ontop_normal_inactive.png"
55 theme.titlebar_ontop_button_focus_inactive = "@AWESOME_THEMES_PATH@/default/titlebar/ontop_focus_inactive.png"
56 theme.titlebar_ontop_button_normal_active = "@AWESOME_THEMES_PATH@/default/titlebar/ontop_normal_active.png"
57 theme.titlebar_ontop_button_focus_active = "@AWESOME_THEMES_PATH@/default/titlebar/ontop_focus_active.png"
59 theme.titlebar_sticky_button_normal_inactive = "@AWESOME_THEMES_PATH@/default/titlebar/sticky_normal_inactive.png"
60 theme.titlebar_sticky_button_focus_inactive = "@AWESOME_THEMES_PATH@/default/titlebar/sticky_focus_inactive.png"
61 theme.titlebar_sticky_button_normal_active = "@AWESOME_THEMES_PATH@/default/titlebar/sticky_normal_active.png"
62 theme.titlebar_sticky_button_focus_active = "@AWESOME_THEMES_PATH@/default/titlebar/sticky_focus_active.png"
64 theme.titlebar_floating_button_normal_inactive = "@AWESOME_THEMES_PATH@/default/titlebar/floating_normal_inactive.png"
65 theme.titlebar_floating_button_focus_inactive = "@AWESOME_THEMES_PATH@/default/titlebar/floating_focus_inactive.png"
66 theme.titlebar_floating_button_normal_active = "@AWESOME_THEMES_PATH@/default/titlebar/floating_normal_active.png"
67 theme.titlebar_floating_button_focus_active = "@AWESOME_THEMES_PATH@/default/titlebar/floating_focus_active.png"
69 theme.titlebar_maximized_button_normal_inactive = "@AWESOME_THEMES_PATH@/default/titlebar/maximized_normal_inactive.png"
70 theme.titlebar_maximized_button_focus_inactive = "@AWESOME_THEMES_PATH@/default/titlebar/maximized_focus_inactive.png"
71 theme.titlebar_maximized_button_normal_active = "@AWESOME_THEMES_PATH@/default/titlebar/maximized_normal_active.png"
72 theme.titlebar_maximized_button_focus_active = "@AWESOME_THEMES_PATH@/default/titlebar/maximized_focus_active.png"
74 -- You can use your own command to set your wallpaper
75 theme.wallpaper_cmd = { "awsetbg @AWESOME_THEMES_PATH@/default/background.png" }
77 -- You can use your own layout icons like this:
78 theme.layout_fairh = "@AWESOME_THEMES_PATH@/default/layouts/fairhw.png"
79 theme.layout_fairv = "@AWESOME_THEMES_PATH@/default/layouts/fairvw.png"
80 theme.layout_floating = "@AWESOME_THEMES_PATH@/default/layouts/floatingw.png"
81 theme.layout_magnifier = "@AWESOME_THEMES_PATH@/default/layouts/magnifierw.png"
82 theme.layout_max = "@AWESOME_THEMES_PATH@/default/layouts/maxw.png"
83 theme.layout_fullscreen = "@AWESOME_THEMES_PATH@/default/layouts/fullscreenw.png"
84 theme.layout_tilebottom = "@AWESOME_THEMES_PATH@/default/layouts/tilebottomw.png"
85 theme.layout_tileleft = "@AWESOME_THEMES_PATH@/default/layouts/tileleftw.png"
86 theme.layout_tile = "@AWESOME_THEMES_PATH@/default/layouts/tilew.png"
87 theme.layout_tiletop = "@AWESOME_THEMES_PATH@/default/layouts/tiletopw.png"
89 theme.awesome_icon = "@AWESOME_ICON_PATH@/awesome16.png"
91 return theme
92 -- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80