mirror of
https://github.com/lcpz/awesome-copycats.git
synced 2024-12-22 19:22:32 +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
|
editor_cmd = terminal .. " -e " .. editor
|
||||||
gui_editor = "geany -ps"
|
gui_editor = "geany -ps"
|
||||||
browser = "dwb"
|
browser = "dwb"
|
||||||
browser2 = "midori"
|
|
||||||
mail = terminal .. " -e mutt "
|
mail = terminal .. " -e mutt "
|
||||||
chat = terminal .. " -e irssi "
|
chat = terminal .. " -e irssi "
|
||||||
tasks = terminal .. " -e htop "
|
tasks = terminal .. " -e htop "
|
||||||
|
@ -148,7 +147,6 @@ mygames = {
|
||||||
mygraphics = {
|
mygraphics = {
|
||||||
{ "nathive" , "nathive" },
|
{ "nathive" , "nathive" },
|
||||||
{ "dia", "dia" },
|
{ "dia", "dia" },
|
||||||
{ "image viewer" , "viewnior" }
|
|
||||||
}
|
}
|
||||||
myoffice = {
|
myoffice = {
|
||||||
{ "writer" , "lowriter" },
|
{ "writer" , "lowriter" },
|
||||||
|
@ -192,7 +190,7 @@ local util = awful.util
|
||||||
|
|
||||||
char_width = nil
|
char_width = nil
|
||||||
text_color = theme.fg_normal or "#FFFFFF"
|
text_color = theme.fg_normal or "#FFFFFF"
|
||||||
today_color = "#FF7100"
|
today_color = theme.taglist_fg_focus or "#FF7100"
|
||||||
calendar_width = 21
|
calendar_width = 21
|
||||||
|
|
||||||
local calendar = nil
|
local calendar = nil
|
||||||
|
@ -536,7 +534,7 @@ netwidget:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.u
|
||||||
|
|
||||||
-- Weather widget
|
-- Weather widget
|
||||||
require("perceptive")
|
require("perceptive")
|
||||||
perceptive.register(123456) -- https://github.com/copycat-killer/perceptive
|
perceptive.register(123456) -- https//github.com/copycat-killer/perceptive
|
||||||
|
|
||||||
-- Separators
|
-- Separators
|
||||||
spr = wibox.widget.textbox(' ')
|
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)
|
mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)
|
||||||
|
|
||||||
-- Create the wibox
|
-- 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
|
-- Widgets that are aligned to the upper left
|
||||||
local left_layout = wibox.layout.fixed.horizontal()
|
local left_layout = wibox.layout.fixed.horizontal()
|
||||||
|
@ -775,9 +773,7 @@ globalkeys = awful.util.table.join(
|
||||||
|
|
||||||
-- User programs
|
-- User programs
|
||||||
awful.key({ modkey, }, "q", function () awful.util.spawn( "dwb", false ) end),
|
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, }, "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),
|
awful.key({ modkey, }, "d", function () awful.util.spawn( "spacefm", false ) end),
|
||||||
|
|
||||||
-- Prompt
|
-- Prompt
|
||||||
|
@ -882,20 +878,12 @@ awful.rules.rules = {
|
||||||
maximized_vertical=true,
|
maximized_vertical=true,
|
||||||
maximized_horizontal=true } },
|
maximized_horizontal=true } },
|
||||||
|
|
||||||
{ rule = { class = "Midori" },
|
|
||||||
properties = { tag = tags[1][1],
|
|
||||||
maximized_vertical=true,
|
|
||||||
maximized_horizontal=true } },
|
|
||||||
|
|
||||||
{ rule = { class = "Geany" },
|
{ rule = { class = "Geany" },
|
||||||
properties = { tag = tags[1][2] } },
|
properties = { tag = tags[1][2] } },
|
||||||
|
|
||||||
{ rule = { class = "Zathura" },
|
{ rule = { class = "Zathura" },
|
||||||
properties = { tag = tags[1][3] } },
|
properties = { tag = tags[1][3] } },
|
||||||
|
|
||||||
{ rule = { class = "Thunderbird" },
|
|
||||||
properties = { tag = tags[1][3] } },
|
|
||||||
|
|
||||||
{ rule = { class = "Dia" },
|
{ rule = { class = "Dia" },
|
||||||
properties = { tag = tags[1][4],
|
properties = { tag = tags[1][4],
|
||||||
floating = true } },
|
floating = true } },
|
||||||
|
|
Loading…
Reference in a new issue