Tags: 12 -> 10
This commit is contained in:
parent
4248e2ff98
commit
d2e0513b03
21
rc.lua
21
rc.lua
|
@ -403,12 +403,7 @@ awful.screen.connect_for_each_screen(function(s)
|
||||||
set_wallpaper(s)
|
set_wallpaper(s)
|
||||||
|
|
||||||
-- Each screen has its own tag table.
|
-- Each screen has its own tag table.
|
||||||
awful.tag({ "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "-" }, s, awful.layout.layouts[4])
|
awful.tag({ "1", "2", "3", "4", "5", "6", "7", "8", "9", "0" }, s, awful.layout.layouts[4])
|
||||||
awful.tag.add("+", {
|
|
||||||
--icon = "/path/to/icon.png",
|
|
||||||
layout = awful.layout.suit.fair,
|
|
||||||
screen = s,
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Create a promptbox for each screen
|
-- Create a promptbox for each screen
|
||||||
s.mypromptbox = awful.widget.prompt()
|
s.mypromptbox = awful.widget.prompt()
|
||||||
|
@ -668,7 +663,7 @@ clientkeys = gears.table.join(
|
||||||
-- Bind all key numbers to tags.
|
-- Bind all key numbers to tags.
|
||||||
-- Be careful: we use keycodes to make it work on any keyboard layout.
|
-- Be careful: we use keycodes to make it work on any keyboard layout.
|
||||||
-- This should map on the top row of your keyboard, usually 1 to 9.
|
-- This should map on the top row of your keyboard, usually 1 to 9.
|
||||||
for i = 1, 12 do
|
for i = 1, 10 do
|
||||||
globalkeys = gears.table.join(globalkeys,
|
globalkeys = gears.table.join(globalkeys,
|
||||||
-- View tag only.
|
-- View tag only.
|
||||||
awful.key({ modkey }, "#" .. i + 9,
|
awful.key({ modkey }, "#" .. i + 9,
|
||||||
|
@ -832,13 +827,13 @@ awful.rules.rules = {
|
||||||
-- { rule = { class = "Qt Jambi application" },
|
-- { rule = { class = "Qt Jambi application" },
|
||||||
-- properties = { tag = "1" } },
|
-- properties = { tag = "1" } },
|
||||||
{ rule = { class = "Pidgin" },
|
{ rule = { class = "Pidgin" },
|
||||||
properties = { tag = "+" } },
|
properties = { tag = "0" } },
|
||||||
{ rule = { class = "Telegram" },
|
{ rule = { class = "Telegram" },
|
||||||
properties = { tag = "+" } },
|
properties = { tag = "0" } },
|
||||||
{ rule = { class = "Viber" },
|
{ rule = { class = "Viber" },
|
||||||
properties = { tag = "+" } },
|
properties = { tag = "0" } },
|
||||||
{ rule = { class = "Stardict" },
|
{ rule = { class = "Stardict" },
|
||||||
properties = { tag = "-" } },
|
properties = { tag = "9" } },
|
||||||
-- { rule = { class = "MPlayer" },
|
-- { rule = { class = "MPlayer" },
|
||||||
-- properties = { floating = true } },
|
-- properties = { floating = true } },
|
||||||
-- { rule = { class = "Texreport-gtk" },
|
-- { rule = { class = "Texreport-gtk" },
|
||||||
|
@ -940,7 +935,7 @@ awful.rules.rules = {
|
||||||
-- { rule = { class = "Eiskaltdcpp" },
|
-- { rule = { class = "Eiskaltdcpp" },
|
||||||
-- properties = { tag = "1" } },
|
-- properties = { tag = "1" } },
|
||||||
-- { rule = { class = "Ekiga" },
|
-- { rule = { class = "Ekiga" },
|
||||||
-- properties = { tag = "+" } },
|
-- properties = { tag = "0" } },
|
||||||
-- { rule = { class = "Googleearth-bin" },
|
-- { rule = { class = "Googleearth-bin" },
|
||||||
-- properties = { tag = "1" } },
|
-- properties = { tag = "1" } },
|
||||||
-- { rule = { class = "Links" },
|
-- { rule = { class = "Links" },
|
||||||
|
@ -948,7 +943,7 @@ awful.rules.rules = {
|
||||||
-- { rule = { class = "Linphone" },
|
-- { rule = { class = "Linphone" },
|
||||||
-- properties = { tag = "1" } },
|
-- properties = { tag = "1" } },
|
||||||
{ rule = { class = "psi" },
|
{ rule = { class = "psi" },
|
||||||
properties = { tag = "+" } },
|
properties = { tag = "0" } },
|
||||||
-- { rule = { class = "Transmission" },
|
-- { rule = { class = "Transmission" },
|
||||||
-- properties = { tag = "1" } },
|
-- properties = { tag = "1" } },
|
||||||
-- { rule = { class = "Vncviewer" },
|
-- { rule = { class = "Vncviewer" },
|
||||||
|
|
Loading…
Reference in New Issue