1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2024-10-22 12:31:23 +00:00

gimp rules adjusted

This commit is contained in:
luke bonham 2013-04-12 14:23:32 +02:00
parent 1735486f7c
commit c289f74acf
2 changed files with 14 additions and 10 deletions

View file

@ -82,7 +82,7 @@ beautiful.init(active_theme .. "/theme.lua")
terminal = "urxvtc"
editor = os.getenv("EDITOR")
editor_cmd = terminal .. " -e " .. editor
gui_editor = "medit"
gui_editor = "gvim"
browser = "dwb"
mail = terminal .. " -e mutt "
chat = terminal .. " -e irssi "
@ -866,7 +866,7 @@ awful.rules.rules = {
maximized_vertical = true,
maximized_horizontal = true } },
{ rule = { class = "Medit" },
{ rule = { class = "Gvim" },
properties = { tag = tags[1][2] } },
{ rule = { class = "Zathura" },
@ -878,21 +878,25 @@ awful.rules.rules = {
-- these gimp rules are set for a 1366x768 screen
{ rule = { class = "Gimp" },
properties = { tag = tags[1][4] } },
properties = { tag = tags[1][4],
floating = false } },
{ rule = { class = "Gimp", role = "gimp-image-window" },
properties = { x = 161, width = 1003,
properties = { x = 138, width = 1024,
maximized_vertical = true } },
{ rule = { class = "Gimp", role = "gimp-toolbox" },
properties = { x = 0, maximized_vertical = true } },
{ rule = { class = "Gimp", role = "gimp-dock" },
properties = { x = 1164, maximized_vertical = true } },
properties = { x = 1165, maximized_vertical = true } },
{ rule = { class = "Gimp", role = "gimp-image-new" },
properties = { x = 480, y = 240} },
{ rule = { class = "Gimp", role = "gimp-toolbox-color-dialog" },
properties = { x = 138, y = 350} },
{ rule = { class = "Gimp", role = "gimp-file-export" },
properties = { maximized_vertical = true,
maximized_horizontal = true,

View file

@ -12,21 +12,21 @@ themes_dir = os.getenv("HOME") .. "/.config/awe
theme.wallpaper = themes_dir .. "/wall.png"
theme.font = "Tamsyn 10"
theme.fg_normal = "#aaaaaa"
theme.fg_focus = "#d79d38"
theme.fg_normal = "#AAAAAA"
theme.fg_focus = "#D79D38"
theme.fg_urgent = "#CC9393"
theme.bg_normal = "#000000"
theme.bg_focus = "#000000"
theme.bg_urgent = "#2a1f1e"
theme.bg_urgent = "#2A1f1E"
theme.border_width = "1"
theme.border_normal = "#101010"
theme.border_focus = "#606060"
theme.border_marked = "#CC9393"
theme.titlebar_bg_focus = "#FFFFFF"
theme.titlebar_bg_normal = "#FFFFFF"
theme.taglist_fg_focus = "#f6784f"
theme.taglist_fg_focus = "#F6784F"
theme.tasklist_bg_focus = "#000000"
theme.tasklist_fg_focus = "#f6784f"
theme.tasklist_fg_focus = "#F6784F"
theme.textbox_widget_margin_top = 1
theme.notify_fg = theme.fg_normal
theme.notify_bg = theme.bg_normal