Initial commit

This commit is contained in:
Guillaume Dott 2012-11-11 01:23:19 +01:00
commit fb365eb621
64 changed files with 128 additions and 0 deletions

BIN
dark/background.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

BIN
dark/games/altitude.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
dark/games/armagetronad.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 945 B

BIN
dark/games/cortexcommand.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 393 B

BIN
dark/games/minecraft.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
dark/games/osmos.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
dark/games/redeclipse.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 864 B

BIN
dark/games/revenge.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

BIN
dark/games/shadowgrounds.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

BIN
dark/games/teeworlds.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
dark/games/trine.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

BIN
dark/games/xmoto.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 980 B

BIN
dark/layouts/dwindle.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 428 B

BIN
dark/layouts/fairh.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 B

BIN
dark/layouts/fairv.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 B

BIN
dark/layouts/floating.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 534 B

BIN
dark/layouts/fullscreen.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 B

BIN
dark/layouts/magnifier.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 B

BIN
dark/layouts/max.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 B

BIN
dark/layouts/spiral.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 973 B

BIN
dark/layouts/tile.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 B

BIN
dark/layouts/tilebottom.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 B

BIN
dark/layouts/tileleft.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 B

BIN
dark/layouts/tiletop.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 B

BIN
dark/submenu.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 541 B

BIN
dark/taglist/square.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 B

BIN
dark/taglist/squaref.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

BIN
dark/taglist/squarefw.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

BIN
dark/taglist/squarew.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 B

BIN
dark/tasklist/floating.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 B

128
dark/theme.lua Executable file
View File

@ -0,0 +1,128 @@
---------------------------
-- Default awesome theme --
---------------------------
theme = {}
theme.font = "bitstream vera sans 7"
theme.bg_normal = "#111111"
theme.bg_focus = "#eeeeee"
theme.bg_urgent = "#ff0000"
theme.bg_minimize = "#444444"
theme.fg_normal = "#1793d1"
theme.fg_focus = "#1793d1"
theme.fg_urgent = "#ffffff"
theme.fg_minimize = "#ffffff"
theme.border_width = "0"
theme.border_normal = "#000000"
theme.border_focus = "#ffffff"
theme.border_marked = "#ff0000"
-- There are another variables sets
-- overriding the default one when
-- defined, the sets are:
-- [taglist|tasklist]_[bg|fg]_[focus|urgent]
-- titlebar_[bg|fg]_[normal|focus]
-- Example:
--taglist_bg_focus = #ff0000
-- Display the taglist squares
theme.taglist_squares_sel = os.getenv("HOME") .. "/.config/awesome/themes/dark/taglist/squaref.png"
theme.taglist_squares_unsel = os.getenv("HOME") .. "/.config/awesome/themes/dark/taglist/square.png"
theme.tasklist_floating_icon = os.getenv("HOME") .. "/.config/awesome/themes/dark/tasklist/floating.png"
-- Variables set for theming menu
-- menu_[bg|fg]_[normal|focus]
-- menu_[border_color|border_width]
theme.menu_submenu_icon = os.getenv("HOME") .. "/.config/awesome/themes/dark/submenu.png"
theme.menu_height = "15"
theme.menu_width = "100"
-- You can add as many variables as
-- you wish and access them by using
-- beautiful.variable in your rc.lua
--bg_widget = #cc0000
-- Define the image to load
theme.titlebar_close_button_normal = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/close_normal.png"
theme.titlebar_close_button_focus = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/close_focus.png"
theme.titlebar_ontop_button_normal_inactive = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/ontop_normal_inactive.png"
theme.titlebar_ontop_button_focus_inactive = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/ontop_focus_inactive.png"
theme.titlebar_ontop_button_normal_active = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/ontop_normal_active.png"
theme.titlebar_ontop_button_focus_active = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/ontop_focus_active.png"
theme.titlebar_sticky_button_normal_inactive = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/sticky_normal_inactive.png"
theme.titlebar_sticky_button_focus_inactive = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/sticky_focus_inactive.png"
theme.titlebar_sticky_button_normal_active = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/sticky_normal_active.png"
theme.titlebar_sticky_button_focus_active = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/sticky_focus_active.png"
theme.titlebar_floating_button_normal_inactive = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/floating_normal_inactive.png"
theme.titlebar_floating_button_focus_inactive = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/floating_focus_inactive.png"
theme.titlebar_floating_button_normal_active = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/floating_normal_active.png"
theme.titlebar_floating_button_focus_active = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/floating_focus_active.png"
theme.titlebar_maximized_button_normal_inactive = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/maximized_normal_inactive.png"
theme.titlebar_maximized_button_focus_inactive = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/maximized_focus_inactive.png"
theme.titlebar_maximized_button_normal_active = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/maximized_normal_active.png"
theme.titlebar_maximized_button_focus_active = os.getenv("HOME") .. "/.config/awesome/themes/dark/titlebar/maximized_focus_active.png"
-- You can use your own command to set your wallpaper
--theme.wallpaper_cmd = { "awsetbg -c " .. os.getenv("HOME") .. "/Pictures/Wallpapers/guitars_dualscreen.png" }
theme.wallpaper_cmd = { "awsetbg -l" }
-- You can use your own layout icons like this:
theme.layout_fairh = os.getenv("HOME") .. "/.config/awesome/themes/dark/layouts/fairh.png"
theme.layout_fairv = os.getenv("HOME") .. "/.config/awesome/themes/dark/layouts/fairv.png"
theme.layout_floating = os.getenv("HOME") .. "/.config/awesome/themes/dark/layouts/floating.png"
theme.layout_magnifier = os.getenv("HOME") .. "/.config/awesome/themes/dark/layouts/magnifier.png"
theme.layout_max = os.getenv("HOME") .. "/.config/awesome/themes/dark/layouts/max.png"
theme.layout_fullscreen = os.getenv("HOME") .. "/.config/awesome/themes/dark/layouts/fullscreen.png"
theme.layout_tilebottom = os.getenv("HOME") .. "/.config/awesome/themes/dark/layouts/tilebottom.png"
theme.layout_tileleft = os.getenv("HOME") .. "/.config/awesome/themes/dark/layouts/tileleft.png"
theme.layout_tile = os.getenv("HOME") .. "/.config/awesome/themes/dark/layouts/tile.png"
theme.layout_tiletop = os.getenv("HOME") .. "/.config/awesome/themes/dark/layouts/tiletop.png"
theme.layout_spiral = os.getenv("HOME") .. "/.config/awesome/themes/dark/layouts/spiral.png"
theme.layout_dwindle = os.getenv("HOME") .. "/.config/awesome/themes/dark/layouts/dwindle.png"
theme.awesome_icon = "/usr/share/awesome/icons/awesome16.png"
theme.armagetronad_icon = os.getenv("HOME") .. "/.config/awesome/themes/dark/games/armagetronad.png"
theme.altitude_icon = os.getenv("HOME") .. "/.config/awesome/themes/dark/games/altitude.png"
theme.minecraft_icon = os.getenv("HOME") .. "/.config/awesome/themes/dark/games/minecraft.png"
theme.xmoto_icon = os.getenv("HOME") .. "/.config/awesome/themes/dark/games/xmoto.png"
theme.teeworlds_icon = os.getenv("HOME") .. "/.config/awesome/themes/dark/games/teeworlds.png"
theme.trine_icon = os.getenv("HOME") .. "/.config/awesome/themes/dark/games/trine.png"
theme.cortexcommand_icon = os.getenv("HOME") .. "/.config/awesome/themes/dark/games/cortexcommand.png"
theme.revenge_icon = os.getenv("HOME") .. "/.config/awesome/themes/dark/games/revenge.png"
theme.redeclipse_icon = os.getenv("HOME") .. "/.config/awesome/themes/dark/games/redeclipse.png"
theme.osmos_icon = os.getenv("HOME") .. "/.config/awesome/themes/dark/games/osmos.png"
theme.shadowgrounds_survivor_icon = os.getenv("HOME") .. "/.config/awesome/themes/dark/games/shadowgrounds-survivor.png"
theme.shadowgrounds_icon = os.getenv("HOME") .. "/.config/awesome/themes/dark/games/shadowgrounds.png"
theme.vol_mute = os.getenv("HOME") .. "/.config/awesome/themes/dark/volume/mute.png"
theme.vol_low = os.getenv("HOME") .. "/.config/awesome/themes/dark/volume/low.png"
theme.vol_med = os.getenv("HOME") .. "/.config/awesome/themes/dark/volume/med.png"
theme.vol_med2 = os.getenv("HOME") .. "/.config/awesome/themes/dark/volume/med2.png"
theme.vol_high = os.getenv("HOME") .. "/.config/awesome/themes/dark/volume/high.png"
theme.border_widget = "#111111"
theme.fg_widget = "#1793d1"
theme.fg_center_widget = "#1793d1"
theme.fg_end_widget = "#ffffff"
theme.fg_off_widget = "#111111"
theme.widget_mail = os.getenv("HOME") .. "/.config/awesome/themes/dark/widgets/mail.png"
theme.widget_music = os.getenv("HOME") .. "/.config/awesome/themes/dark/widgets/music.png"
theme.widget_pacman = os.getenv("HOME") .. "/.config/awesome/themes/dark/widgets/arch.png"
theme.widget_cpu = os.getenv("HOME") .. "/.config/awesome/themes/dark/widgets/cpu.png"
theme.widget_mem = os.getenv("HOME") .. "/.config/awesome/themes/dark/widgets/mem.png"
theme.widget_down = os.getenv("HOME") .. "/.config/awesome/themes/dark/widgets/down.png"
theme.widget_up = os.getenv("HOME") .. "/.config/awesome/themes/dark/widgets/up.png"
theme.widget_fs = os.getenv("HOME") .. "/.config/awesome/themes/dark/widgets/diskette.png"
theme.widget_wifi = os.getenv("HOME") .. "/.config/awesome/themes/dark/widgets/wifi.png"
return theme

BIN
dark/titlebar/close_focus.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 B

BIN
dark/titlebar/close_normal.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 B

BIN
dark/volume/high.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 B

BIN
dark/volume/low.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

BIN
dark/volume/med.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 226 B

BIN
dark/volume/med2.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 B

BIN
dark/volume/mute.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 B

BIN
dark/widgets/arch.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 488 B

BIN
dark/widgets/cpu.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 B

BIN
dark/widgets/diskette.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

BIN
dark/widgets/down.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 184 B

BIN
dark/widgets/mail.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 B

BIN
dark/widgets/mem.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 B

BIN
dark/widgets/music.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 B

BIN
dark/widgets/up.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 B

BIN
dark/widgets/wifi.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 B