Skip to content

Instantly share code, notes, and snippets.

@DanielFGray
Created September 20, 2014 02:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DanielFGray/e8e18f3a089131f5661a to your computer and use it in GitHub Desktop.
Save DanielFGray/e8e18f3a089131f5661a to your computer and use it in GitHub Desktop.
AwesomeWM theme.lua
theme = {}
themes_dir = os.getenv("HOME") .. "/.config/awesome/themes/darkness"
theme.font = "Tewi 11"
theme.fg_normal = "#ffffff"
theme.fg_focus = "#596875"
theme.fg_urgent = "#6e464b"
theme.bg_normal = "#292929"
theme.bg_focus = "#252525"
theme.bg_urgent = "#9f6744"
theme.border_width = 0
theme.border_normal = "#363636e6"
theme.border_focus = "#9f6744"
theme.border_marked = "#CC9393"
theme.titlebar_bg_focus = "#dedede"
theme.titlebar_bg_normal = "#292929"
theme.taglist_fg_focus = "#dedede"
theme.taglist_bg_focus = "#363636"
theme.tasklist_bg_focus = "#292929"
theme.tasklist_fg_focus = "#dedede"
theme.textbox_widget_margin_top = 1
theme.notify_fg = theme.fg_normal
theme.notify_bg = theme.bg_normal
theme.notify_border = theme.border_focus
theme.awful_widget_height = 12
theme.awful_widget_margin_top = 2
theme.mouse_finder_color = "#CC9393"
theme.menu_height = "16"
theme.menu_width = "140"
theme.menu_submenu_icon = themes_dir .. "/icons/submenu.png"
theme.taglist_squares_sel = themes_dir .. "/taglist/squarefza.png"
theme.taglist_squares_unsel = themes_dir .. "/taglist/squareza.png"
theme.layout_floating = themes_dir .. "/icons/floating.png"
theme.widget_ac = themes_dir .. "/icons/ac.png"
theme.widget_battery = themes_dir .. "/icons/bat.png"
theme.widget_battery_low = themes_dir .. "/icons/bat1.png"
theme.widget_battery_empty = themes_dir .. "/icons/bat2.png"
theme.widget_mem = themes_dir .. "/icons/mem.png"
theme.widget_cpu = themes_dir .. "/icons/cpu.png"
theme.widget_clock = themes_dir .. "/icons/clock.png"
theme.widget_temp = themes_dir .. "/icons/temp.png"
theme.widget_net = themes_dir .. "/icons/wifi.png"
theme.widget_hdd = themes_dir .. "/icons/17.png"
theme.widget_music = themes_dir .. "/icons/note.png"
theme.widget_music_on = themes_dir .. "/icons/note_on.png"
theme.widget_vol = themes_dir .. "/icons/vol.png"
theme.widget_vol_low = themes_dir .. "/icons/vol_low.png"
theme.widget_vol_no = themes_dir .. "/icons/vol_no.png"
theme.widget_vol_mute = themes_dir .. "/icons/vol_mute.png"
theme.widget_mail = themes_dir .. "/icons/mail.png"
theme.widget_mail_on = themes_dir .. "/icons/mail_on.png"
theme.layout_uselesstile = themes_dir .. "/icons/tile.png"
theme.layout_uselesstileleft = themes_dir .. "/icons/tileleft.png"
theme.layout_uselesstiletop = themes_dir .. "/icons/tiletop.png"
theme.useless_gap_width = 0
theme.tasklist_disable_icon = true
theme.tasklist_floating = ""
theme.tasklist_maximized_horizontal = ""
theme.tasklist_maximized_vertical = ""
return theme
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment