mirror of
https://github.com/lcpz/awesome-copycats.git
synced 2024-12-22 11:12:31 +00:00
blackburn: removed some programs
This commit is contained in:
parent
179c79a7c8
commit
e7655caffe
|
@ -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 } },
|
||||
|
|
Loading…
Reference in a new issue