From e7655caffe50c0748b5ca0a1157627fca5d86562 Mon Sep 17 00:00:00 2001 From: luke bonham Date: Sat, 6 Apr 2013 11:43:42 +0200 Subject: [PATCH] blackburn: removed some programs --- rc.lua.blackburn | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/rc.lua.blackburn b/rc.lua.blackburn index c1e4616..c1c9687 100755 --- a/rc.lua.blackburn +++ b/rc.lua.blackburn @@ -83,7 +83,6 @@ editor = os.getenv("EDITOR") editor_cmd = terminal .. " -e " .. editor gui_editor = "geany -ps" browser = "dwb" -browser2 = "midori" mail = terminal .. " -e mutt " chat = terminal .. " -e irssi " tasks = terminal .. " -e htop " @@ -148,7 +147,6 @@ mygames = { mygraphics = { { "nathive" , "nathive" }, { "dia", "dia" }, - { "image viewer" , "viewnior" } } myoffice = { { "writer" , "lowriter" }, @@ -192,7 +190,7 @@ local util = awful.util char_width = nil text_color = theme.fg_normal or "#FFFFFF" -today_color = "#FF7100" +today_color = theme.taglist_fg_focus or "#FF7100" calendar_width = 21 local calendar = nil @@ -536,7 +534,7 @@ netwidget:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.u -- Weather widget require("perceptive") -perceptive.register(123456) -- https://github.com/copycat-killer/perceptive +perceptive.register(123456) -- https//github.com/copycat-killer/perceptive -- Separators spr = wibox.widget.textbox(' ') @@ -612,7 +610,7 @@ for s = 1, screen.count() do mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons) -- Create the wibox - mywibox[s] = awful.wibox({ position = "top", screen = s }) + mywibox[s] = awful.wibox({ position = "top", screen = s, height = 18 }) -- Widgets that are aligned to the upper left local left_layout = wibox.layout.fixed.horizontal() @@ -775,9 +773,7 @@ globalkeys = awful.util.table.join( -- User programs awful.key({ modkey, }, "q", function () awful.util.spawn( "dwb", false ) end), - awful.key({ modkey, }, "a", function () awful.util.spawn( "midori", false ) end), awful.key({ modkey, }, "s", function () awful.util.spawn(gui_editor) end), - awful.key({ modkey, }, "t", function () awful.util.spawn( "thunderbird", false ) end), awful.key({ modkey, }, "d", function () awful.util.spawn( "spacefm", false ) end), -- Prompt @@ -882,20 +878,12 @@ awful.rules.rules = { maximized_vertical=true, maximized_horizontal=true } }, - { rule = { class = "Midori" }, - properties = { tag = tags[1][1], - maximized_vertical=true, - maximized_horizontal=true } }, - { rule = { class = "Geany" }, properties = { tag = tags[1][2] } }, { rule = { class = "Zathura" }, properties = { tag = tags[1][3] } }, - { rule = { class = "Thunderbird" }, - properties = { tag = tags[1][3] } }, - { rule = { class = "Dia" }, properties = { tag = tags[1][4], floating = true } },