gimp rules adjusted
This commit is contained in:
parent
1735486f7c
commit
c289f74acf
|
@ -82,7 +82,7 @@ beautiful.init(active_theme .. "/theme.lua")
|
||||||
terminal = "urxvtc"
|
terminal = "urxvtc"
|
||||||
editor = os.getenv("EDITOR")
|
editor = os.getenv("EDITOR")
|
||||||
editor_cmd = terminal .. " -e " .. editor
|
editor_cmd = terminal .. " -e " .. editor
|
||||||
gui_editor = "medit"
|
gui_editor = "gvim"
|
||||||
browser = "dwb"
|
browser = "dwb"
|
||||||
mail = terminal .. " -e mutt "
|
mail = terminal .. " -e mutt "
|
||||||
chat = terminal .. " -e irssi "
|
chat = terminal .. " -e irssi "
|
||||||
|
@ -866,7 +866,7 @@ awful.rules.rules = {
|
||||||
maximized_vertical = true,
|
maximized_vertical = true,
|
||||||
maximized_horizontal = true } },
|
maximized_horizontal = true } },
|
||||||
|
|
||||||
{ rule = { class = "Medit" },
|
{ rule = { class = "Gvim" },
|
||||||
properties = { tag = tags[1][2] } },
|
properties = { tag = tags[1][2] } },
|
||||||
|
|
||||||
{ rule = { class = "Zathura" },
|
{ rule = { class = "Zathura" },
|
||||||
|
@ -878,21 +878,25 @@ awful.rules.rules = {
|
||||||
|
|
||||||
-- these gimp rules are set for a 1366x768 screen
|
-- these gimp rules are set for a 1366x768 screen
|
||||||
{ rule = { class = "Gimp" },
|
{ rule = { class = "Gimp" },
|
||||||
properties = { tag = tags[1][4] } },
|
properties = { tag = tags[1][4],
|
||||||
|
floating = false } },
|
||||||
|
|
||||||
{ rule = { class = "Gimp", role = "gimp-image-window" },
|
{ rule = { class = "Gimp", role = "gimp-image-window" },
|
||||||
properties = { x = 161, width = 1003,
|
properties = { x = 138, width = 1024,
|
||||||
maximized_vertical = true } },
|
maximized_vertical = true } },
|
||||||
|
|
||||||
{ rule = { class = "Gimp", role = "gimp-toolbox" },
|
{ rule = { class = "Gimp", role = "gimp-toolbox" },
|
||||||
properties = { x = 0, maximized_vertical = true } },
|
properties = { x = 0, maximized_vertical = true } },
|
||||||
|
|
||||||
{ rule = { class = "Gimp", role = "gimp-dock" },
|
{ 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" },
|
{ rule = { class = "Gimp", role = "gimp-image-new" },
|
||||||
properties = { x = 480, y = 240} },
|
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" },
|
{ rule = { class = "Gimp", role = "gimp-file-export" },
|
||||||
properties = { maximized_vertical = true,
|
properties = { maximized_vertical = true,
|
||||||
maximized_horizontal = true,
|
maximized_horizontal = true,
|
||||||
|
|
|
@ -12,21 +12,21 @@ themes_dir = os.getenv("HOME") .. "/.config/awe
|
||||||
theme.wallpaper = themes_dir .. "/wall.png"
|
theme.wallpaper = themes_dir .. "/wall.png"
|
||||||
|
|
||||||
theme.font = "Tamsyn 10"
|
theme.font = "Tamsyn 10"
|
||||||
theme.fg_normal = "#aaaaaa"
|
theme.fg_normal = "#AAAAAA"
|
||||||
theme.fg_focus = "#d79d38"
|
theme.fg_focus = "#D79D38"
|
||||||
theme.fg_urgent = "#CC9393"
|
theme.fg_urgent = "#CC9393"
|
||||||
theme.bg_normal = "#000000"
|
theme.bg_normal = "#000000"
|
||||||
theme.bg_focus = "#000000"
|
theme.bg_focus = "#000000"
|
||||||
theme.bg_urgent = "#2a1f1e"
|
theme.bg_urgent = "#2A1f1E"
|
||||||
theme.border_width = "1"
|
theme.border_width = "1"
|
||||||
theme.border_normal = "#101010"
|
theme.border_normal = "#101010"
|
||||||
theme.border_focus = "#606060"
|
theme.border_focus = "#606060"
|
||||||
theme.border_marked = "#CC9393"
|
theme.border_marked = "#CC9393"
|
||||||
theme.titlebar_bg_focus = "#FFFFFF"
|
theme.titlebar_bg_focus = "#FFFFFF"
|
||||||
theme.titlebar_bg_normal = "#FFFFFF"
|
theme.titlebar_bg_normal = "#FFFFFF"
|
||||||
theme.taglist_fg_focus = "#f6784f"
|
theme.taglist_fg_focus = "#F6784F"
|
||||||
theme.tasklist_bg_focus = "#000000"
|
theme.tasklist_bg_focus = "#000000"
|
||||||
theme.tasklist_fg_focus = "#f6784f"
|
theme.tasklist_fg_focus = "#F6784F"
|
||||||
theme.textbox_widget_margin_top = 1
|
theme.textbox_widget_margin_top = 1
|
||||||
theme.notify_fg = theme.fg_normal
|
theme.notify_fg = theme.fg_normal
|
||||||
theme.notify_bg = theme.bg_normal
|
theme.notify_bg = theme.bg_normal
|
||||||
|
|
Loading…
Reference in New Issue