public
Description: My dotfiles
Homepage: http://ciaranm.wordpress.com/
Clone URL: git://github.com/ciaranm/dotfiles-ciaranm.git
ciaranm (author)
Wed Oct 28 14:03:39 -0700 2009
commit  355da03bb7af3028ed4dcf1005ca57daa011a194
tree    192f9c9cca3d775900b4624413559e0eb4962a01
parent  fa0c5aedea80320c231d9f5102486f2013de72fe
dotfiles-ciaranm / theme.lua-snowmobile
100644 59 lines (48 sloc) 2.511 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
-------------------------------
-- This started out life as: --
-- "Sky" awesome theme --
-- By Andrei "Garoth" Thorp --
-- If you want SVGs and extras, get them from garoth.com/awesome/sky-theme
 
-- BASICS
theme = {}
theme.font = "sans 6"
 
theme.bg_focus = "#cccccc"
theme.bg_normal = "#999999"
theme.bg_urgent = "#ffffff"
theme.bg_minimize = "#666666"
 
theme.fg_normal = "#666666"
theme.fg_focus = "#333333"
theme.fg_urgent = "#000000"
theme.fg_minimize = "#666666"
 
theme.border_width = "1"
theme.border_normal = "#333333"
theme.border_focus = "#666666"
theme.border_marked = "#cccccc"
 
-- IMAGES
theme.layout_fairh = "/usr/share/awesome/themes/sky/layouts/fairh.png"
theme.layout_fairv = "/usr/share/awesome/themes/sky/layouts/fairv.png"
theme.layout_floating = "/usr/share/awesome/themes/sky/layouts/floating.png"
theme.layout_magnifier = "/usr/share/awesome/themes/sky/layouts/magnifier.png"
theme.layout_max = "/usr/share/awesome/themes/sky/layouts/max.png"
theme.layout_fullscreen = "/usr/share/awesome/themes/sky/layouts/fullscreen.png"
theme.layout_tilebottom = "/usr/share/awesome/themes/sky/layouts/tilebottom.png"
theme.layout_tileleft = "/usr/share/awesome/themes/sky/layouts/tileleft.png"
theme.layout_tile = "/usr/share/awesome/themes/sky/layouts/tile.png"
theme.layout_tiletop = "/usr/share/awesome/themes/sky/layouts/tiletop.png"
 
theme.awesome_icon = "/usr/share/awesome/themes/sky/awesome-icon.png"
theme.tasklist_floating_icon = "/usr/share/awesome/themes/sky/layouts/floating.png"
 
-- from default for now...
theme.menu_submenu_icon = "/usr/share/awesome/themes/default/submenu.png"
theme.taglist_squares_sel = "/usr/share/awesome/themes/default/taglist/squarefw.png"
theme.taglist_squares_unsel = "/usr/share/awesome/themes/default/taglist/squarew.png"
 
-- MISC
theme.wallpaper_cmd = { "sh -c 'find ~/wallpaper/current/ -type f | shuf -n1 | xargs feh --bg-scale'" }
theme.taglist_squares = "true"
theme.titlebar_close_button = "true"
theme.menu_height = "15"
theme.menu_width = "100"
 
-- Define the image to load
theme.titlebar_close_button_normal = "/usr/share/awesome/themes/default/titlebar/close.png"
theme.titlebar_close_button_focus = "/usr/share/awesome/themes/default/titlebar/closer.png"
 
return theme
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80