Rename the module tynannical, add better documentation
This commit is contained in:
parent
3b40af2a4b
commit
c9c603c18a
|
@ -1,4 +1,4 @@
|
||||||
Tyranic - A simple rule engine
|
Tyrannical - A simple rule engine
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
||||||
### Description
|
### Description
|
||||||
|
@ -7,7 +7,7 @@ many kid aged TV stars, it havn't grown that well. Many of it's, once unique, fe
|
||||||
supported by the default awful.tag engine, adding legacy complexity to the code base and affecting
|
supported by the default awful.tag engine, adding legacy complexity to the code base and affecting
|
||||||
performance.
|
performance.
|
||||||
|
|
||||||
This is why Tyranic was created. It is a light rule engine offering pretty much the same rule system,
|
This is why Tyrannical was created. It is a light rule engine offering pretty much the same rule system,
|
||||||
but without all the dynamic tag code. Note that dynamic tagging is now supported directly by awesome.
|
but without all the dynamic tag code. Note that dynamic tagging is now supported directly by awesome.
|
||||||
|
|
||||||
### Examples
|
### Examples
|
||||||
|
|
317
example.rc.lua
317
example.rc.lua
|
@ -2,7 +2,7 @@
|
||||||
-- Remove last dir
|
-- Remove last dir
|
||||||
local pwd = os.getenv("PWD"):match("(.+)/.-")
|
local pwd = os.getenv("PWD"):match("(.+)/.-")
|
||||||
package.path = pwd .. "/?.lua;" .. pwd .. "/?/init.lua;" .. package.path
|
package.path = pwd .. "/?.lua;" .. pwd .. "/?/init.lua;" .. package.path
|
||||||
local tyranical = require("awesome-tyranical")
|
local tyrannical = require("tyrannical")
|
||||||
|
|
||||||
-- Standard awesome library
|
-- Standard awesome library
|
||||||
local gears = require("gears")
|
local gears = require("gears")
|
||||||
|
@ -77,300 +77,89 @@ local layouts =
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
|
|
||||||
tyranical.tags = {
|
tyrannical.tags = {
|
||||||
{
|
{
|
||||||
name = "Term",
|
name = "Term", -- Call the tag "Term"
|
||||||
init = true ,
|
init = true, -- Load the tag on startup
|
||||||
exclusive = true ,
|
exclusive = true, -- Refuse any other type of clients (by classes)
|
||||||
-- icon = utils.tools.invertedIconPath("term.png") ,
|
screen = {1,2}, -- Create this tag on screen 1 and screen 2
|
||||||
screen = 1,-- {config.data().scr.pri, config.data().scr.sec} ,
|
layout = awful.layout.suit.tile, -- Use the tile layout
|
||||||
layout = awful.layout.suit.tile ,
|
class = { --Accept the following classes, refuse everything else (because of "exclusive=true")
|
||||||
class = {
|
"xterm" , "urxvt" , "aterm","URxvt","XTerm","konsole","terminator","gnome-terminal"
|
||||||
"xterm" , "urxvt" , "aterm","URxvt","XTerm"
|
|
||||||
},
|
|
||||||
match = {
|
|
||||||
"konsole"
|
|
||||||
}
|
}
|
||||||
} ,
|
} ,
|
||||||
{
|
{
|
||||||
name = "Internet",
|
name = "Internet",
|
||||||
init = true ,
|
init = true,
|
||||||
exclusive = true ,
|
exclusive = true,
|
||||||
-- icon = utils.tools.invertedIconPath("net.png") ,
|
--icon = "~net.png", -- Use this icon for the tag (uncomment with a real path)
|
||||||
screen = 1,--config.data().scr.pri ,
|
screen = screen.count()>1 and 2 or 1,-- Setup on screen 2 if there is more than 1 screen, else on screen 1
|
||||||
layout = awful.layout.suit.max ,
|
layout = awful.layout.suit.max, -- Use the max layout
|
||||||
class = {
|
class = {
|
||||||
"Opera" , "Firefox" , "Rekonq" , "Dillo" , "Arora",
|
"Opera" , "Firefox" , "Rekonq" , "Dillo" , "Arora",
|
||||||
"Chromium" , "nightly" , "Nightly" , "minefield" , "Minefield" }
|
"Chromium" , "nightly" , "minefield" }
|
||||||
} ,
|
} ,
|
||||||
{
|
{
|
||||||
name = "Files",
|
name = "Files",
|
||||||
init = true ,
|
init = true,
|
||||||
exclusive = true ,
|
exclusive = true,
|
||||||
-- icon = utils.tools.invertedIconPath("folder.png") ,
|
screen = 1,
|
||||||
screen = 1,--config.data().scr.pri ,
|
layout = awful.layout.suit.tile,
|
||||||
layout = awful.layout.suit.tile ,
|
exec_once = {"dolphin"}, --When the tag is accessed for the first time, execute this command
|
||||||
exec_once = {"dolphin"} ,
|
|
||||||
class = {
|
class = {
|
||||||
"Thunar" , "Konqueror" , "Dolphin" , "ark" , "Nautilus", }
|
"Thunar", "Konqueror", "Dolphin", "ark", "Nautilus","emelfm"
|
||||||
|
}
|
||||||
} ,
|
} ,
|
||||||
{
|
{
|
||||||
name = "Develop",
|
name = "Develop",
|
||||||
init = true ,
|
init = true,
|
||||||
exclusive = true ,
|
exclusive = true,
|
||||||
-- screen = 1,--{config.data().scr.pri, config.data().scr.sec} ,
|
screen = 1,
|
||||||
-- icon = utils.tools.invertedIconPath("bug.png") ,
|
clone_on = 2, -- Create a single instance of this tag on screen 1, but also show it on screen 2
|
||||||
|
-- The tag can be used on both screen, but only one at once
|
||||||
layout = awful.layout.suit.max ,
|
layout = awful.layout.suit.max ,
|
||||||
class ={
|
class ={
|
||||||
"Kate" , "KDevelop" , "Codeblocks", "Code::Blocks" , "DDD", "kate4" }
|
"Kate", "KDevelop", "Codeblocks", "Code::Blocks" , "DDD", "kate4"}
|
||||||
} ,
|
} ,
|
||||||
{
|
{
|
||||||
name = "Edit",
|
name = "Doc",
|
||||||
init = true ,
|
init = false, -- This tag wont be created at startup, but will be when one of the
|
||||||
exclusive = true ,
|
-- client in the "class" section will start. It will be created on
|
||||||
-- screen =1,-- {config.data().scr.pri, config.data().scr.sec} ,
|
-- the client startup screen
|
||||||
-- icon = utils.tools.invertedIconPath("editor.png") ,
|
exclusive = true,
|
||||||
layout = awful.layout.suit.tile.bottom ,
|
layout = awful.layout.suit.max,
|
||||||
class = {
|
|
||||||
"KWrite" , "GVim" , "Emacs" , "Code::Blocks" , "DDD" }
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Media",
|
|
||||||
init = true ,
|
|
||||||
exclusive = true ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("media.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {
|
|
||||||
"Xine" , "xine Panel" , "xine*" , "MPlayer" , "GMPlayer",
|
|
||||||
"XMMS" }
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Doc",
|
|
||||||
-- init = true ,
|
|
||||||
exclusive = true ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("info.png") ,
|
|
||||||
-- screen = config.data().scr.music ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {
|
class = {
|
||||||
"Assistant" , "Okular" , "Evince" , "EPDFviewer" , "xpdf",
|
"Assistant" , "Okular" , "Evince" , "EPDFviewer" , "xpdf",
|
||||||
"Xpdf" , }
|
"Xpdf" , }
|
||||||
} ,
|
} ,
|
||||||
|
|
||||||
|
|
||||||
-----------------VOLATILE TAGS-----------------------
|
|
||||||
{
|
|
||||||
name = "Imaging",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("image.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"Inkscape" , "KolourPaint" , "Krita" , "Karbon" , "Karbon14"}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Picture",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("image.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"Digikam" , "F-Spot" , "GPicView" , "ShowPhoto" , "KPhotoAlbum"}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Video",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("video.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"KDenLive" , "Cinelerra" , "AVIDeMux" , "Kino"}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Movie",
|
|
||||||
init = false ,
|
|
||||||
position = 12 ,
|
|
||||||
exclusive = true ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("video.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"VLC"}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "3D",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("3d.png") ,
|
|
||||||
layout = awful.layout.suit.max.fullscreen ,
|
|
||||||
class = {"Blender" , "Maya" , "K-3D" , "KPovModeler" , }
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Music",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
screen = 1,----config.data().scr.music or config.data().scr.pri ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("media.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"Amarok" , "SongBird" , "last.fm" ,}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Down",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("download.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"Transmission" , "KGet"}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Office",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("office.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {
|
|
||||||
"OOWriter" , "OOCalc" , "OOMath" , "OOImpress" , "OOBase" ,
|
|
||||||
"SQLitebrowser" , "Silverun" , "Workbench" , "KWord" , "KSpread" ,
|
|
||||||
"KPres","Basket", "openoffice.org" , "OpenOffice.*" , }
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "RSS",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("rss.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Chat",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
screen = 1,--config.data().scr.sec or config.data().scr.sec ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("chat.png") ,
|
|
||||||
layout = awful.layout.suit.tile ,
|
|
||||||
class = {"Pidgin" , "Kopete" ,}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Burning",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("burn.png") ,
|
|
||||||
layout = awful.layout.suit.tile ,
|
|
||||||
class = {"k3b"}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Mail",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
-- screen = 1,--config.data().scr.sec or config.data().scr.pri ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("mail2.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"Thunderbird" , "kmail" , "evolution" ,}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "IRC",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
screen = 1,--config.data().scr.irc or config.data().scr.pri ,
|
|
||||||
init = true ,
|
|
||||||
spawn = "konversation" ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("irc.png") ,
|
|
||||||
force_screen= true ,
|
|
||||||
layout = awful.layout.suit.fair ,
|
|
||||||
class = {"Konversation" , "Botch" , "WeeChat" , "weechat" , "irssi"}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Test",
|
|
||||||
init = false ,
|
|
||||||
position = 99 ,
|
|
||||||
exclusive = false ,
|
|
||||||
screen = 1,--config.data().scr.sec or config.data().scr.pri ,
|
|
||||||
leave_kills = true ,
|
|
||||||
persist = true ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("tools.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Config",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = false ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("tools.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"Systemsettings", "Kcontrol" , "gconf-editor"}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Game",
|
|
||||||
init = false ,
|
|
||||||
screen = 1,--config.data().scr.pri ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = false ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("game.png") ,
|
|
||||||
force_screen= true ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"sauer_client" , "Cube 2$" , "Cube 2: Sauerbraten" ,}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Gimp",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = false ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("image.png") ,
|
|
||||||
layout = awful.layout.tile ,
|
|
||||||
nmaster = 1 ,
|
|
||||||
incncol = 10 ,
|
|
||||||
ncol = 2 ,
|
|
||||||
mwfact = 0.00 ,
|
|
||||||
class = {}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Other",
|
|
||||||
init = true ,
|
|
||||||
position = 15 ,
|
|
||||||
exclusive = false ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("term.png") ,
|
|
||||||
max_clients = 5 ,
|
|
||||||
screen = {3, 4, 5} ,
|
|
||||||
layout = awful.layout.suit.tile ,
|
|
||||||
class = {}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "MediaCenter",
|
|
||||||
init = true ,
|
|
||||||
position = 15 ,
|
|
||||||
exclusive = false ,
|
|
||||||
-- icon = utils.tools.invertedIconPath("video.png") ,
|
|
||||||
max_clients = 5 ,
|
|
||||||
screen = 1,--config.data().scr.media or config.data().scr.pri ,
|
|
||||||
init = "mythfrontend" ,
|
|
||||||
layout = awful.layout.suit.tile ,
|
|
||||||
class = {"mythfrontend" , "xbmc" ,}
|
|
||||||
} ,
|
|
||||||
}
|
|
||||||
tyranical.properties.intrusive = {
|
|
||||||
"ksnapshot" , "pinentry" , "gtksu" , "kcalc" , "xcalc" ,
|
|
||||||
"feh" , "Gradient editor", "About KDE" , "Paste Special", "Background color",
|
|
||||||
"kcolorchooser" , "plasmoidviewer" , "plasmaengineexplorer" , "Xephyr" , "kruler" ,
|
|
||||||
}
|
}
|
||||||
tyranical.properties.floating = {
|
|
||||||
|
-- Ignore the tag "exclusive" property for the following clients (matched by classes)
|
||||||
|
tyrannical.properties.intrusive = {
|
||||||
|
"ksnapshot" , "pinentry" , "gtksu" , "kcalc" , "xcalc" ,
|
||||||
|
"feh" , "Gradient editor", "About KDE" , "Paste Special", "Background color" ,
|
||||||
|
"kcolorchooser" , "plasmoidviewer" , "Xephyr" , "kruler" , "plasmaengineexplorer",
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Ignore the tiled layout for the matching clients
|
||||||
|
tyrannical.properties.floating = {
|
||||||
"MPlayer" , "pinentry" , "ksnapshot" , "pinentry" , "gtksu" ,
|
"MPlayer" , "pinentry" , "ksnapshot" , "pinentry" , "gtksu" ,
|
||||||
"xine" , "feh" , "kmix" , "kcalc" , "xcalc" ,
|
"xine" , "feh" , "kmix" , "kcalc" , "xcalc" ,
|
||||||
"yakuake" , "Select Color$" , "kruler" , "kcolorchooser", "Paste Special" ,
|
"yakuake" , "Select Color$" , "kruler" , "kcolorchooser", "Paste Special" ,
|
||||||
"New Form" , "Insert Picture" , "kcharselect", "mythfrontend" , "plasmoidviewer"
|
"New Form" , "Insert Picture" , "kcharselect", "mythfrontend" , "plasmoidviewer"
|
||||||
}
|
}
|
||||||
|
|
||||||
tyranical.properties.ontop = {
|
-- Make the matching clients (by classes) on top of the default layout
|
||||||
|
tyrannical.properties.ontop = {
|
||||||
"Xephyr" , "ksnapshot" , "kruler"
|
"Xephyr" , "ksnapshot" , "kruler"
|
||||||
}
|
}
|
||||||
|
|
||||||
tyranical.properties.size_hints_honor = { xterm = false, URxvt = false, aterm = false, sauer_client = false, mythfrontend = false}
|
-- Force the matching clients (by classes) to be centered on the screen on init
|
||||||
|
tyranic.properties.centered = {
|
||||||
|
"kcalc"
|
||||||
|
}
|
||||||
|
|
||||||
|
tyrannical.properties.size_hints_honor = { xterm = false, URxvt = false, aterm = false, sauer_client = false, mythfrontend = false}
|
||||||
|
|
||||||
|
|
||||||
-- {{{ Wallpaper
|
-- {{{ Wallpaper
|
||||||
|
|
17
init.lua
17
init.lua
|
@ -39,7 +39,7 @@ local function on_selected_change(tag,data)
|
||||||
end
|
end
|
||||||
|
|
||||||
--Turn tags -> matches into matches -> tags
|
--Turn tags -> matches into matches -> tags
|
||||||
local function fill_tyranic(tab_in,tab_out,value)
|
local function fill_tyrannical(tab_in,tab_out,value)
|
||||||
if tab_in and tab_out then
|
if tab_in and tab_out then
|
||||||
for i=1,#tab_in do
|
for i=1,#tab_in do
|
||||||
local low = string.lower(tab_in[i])
|
local low = string.lower(tab_in[i])
|
||||||
|
@ -52,8 +52,8 @@ local function fill_tyranic(tab_in,tab_out,value)
|
||||||
end
|
end
|
||||||
|
|
||||||
--Load tags, this cannot be undone
|
--Load tags, this cannot be undone
|
||||||
local function load_tags(tyranic_tags)
|
local function load_tags(tyrannical_tags)
|
||||||
for k,v in ipairs(tyranic_tags) do
|
for k,v in ipairs(tyrannical_tags) do
|
||||||
if v.init ~= false then
|
if v.init ~= false then
|
||||||
v.instances = {}
|
v.instances = {}
|
||||||
local stype = type(v.screen)
|
local stype = type(v.screen)
|
||||||
|
@ -70,8 +70,8 @@ local function load_tags(tyranic_tags)
|
||||||
elseif v.volatile == nil then
|
elseif v.volatile == nil then
|
||||||
v.volatile = true
|
v.volatile = true
|
||||||
end
|
end
|
||||||
fill_tyranic(v.class,class_client,v)
|
fill_tyrannical(v.class,class_client,v)
|
||||||
fill_tyranic(v.match,matches_client,v)
|
fill_tyrannical(v.match,matches_client,v)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -101,7 +101,7 @@ local function match_client(c, startup)
|
||||||
end
|
end
|
||||||
--Focus new client
|
--Focus new client
|
||||||
if rules.properties.focus_new ~= false then
|
if rules.properties.focus_new ~= false then
|
||||||
c.focus = c
|
capi.client.focus = c
|
||||||
end
|
end
|
||||||
--Set other properties
|
--Set other properties
|
||||||
for k,v in pairs(rules.properties) do
|
for k,v in pairs(rules.properties) do
|
||||||
|
@ -153,6 +153,9 @@ local function match_client(c, startup)
|
||||||
local tmp,tag = class_client[low],awful.tag.add(c.class,{name=c.class,volatile=true,screen=(c.screen <= capi.screen.count()) and c.screen or 1,layout=awful.layout.suit.max})
|
local tmp,tag = class_client[low],awful.tag.add(c.class,{name=c.class,volatile=true,screen=(c.screen <= capi.screen.count()) and c.screen or 1,layout=awful.layout.suit.max})
|
||||||
tmp.tags[#tmp.tags+1] = {name=c.class,instances = {[c.screen]=tag},volatile=true,screen=c.screen}
|
tmp.tags[#tmp.tags+1] = {name=c.class,instances = {[c.screen]=tag},volatile=true,screen=c.screen}
|
||||||
c:tags({tag})
|
c:tags({tag})
|
||||||
|
if awful.tag.getproperty(tag,"focus_on_new") ~= false then
|
||||||
|
awful.tag.viewonly(tag)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
capi.client.connect_signal("manage", match_client)
|
capi.client.connect_signal("manage", match_client)
|
||||||
|
@ -237,7 +240,7 @@ local function setter (table, key,value)
|
||||||
elseif key == "properties" then
|
elseif key == "properties" then
|
||||||
properties = value
|
properties = value
|
||||||
setmetatable(properties, {__newindex = function(table,k,v) load_property(k,v) end})
|
setmetatable(properties, {__newindex = function(table,k,v) load_property(k,v) end})
|
||||||
for k,v in pairs(tyranic_properties) do
|
for k,v in pairs(tyrannical_properties) do
|
||||||
load_property(k,v)
|
load_property(k,v)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
316
sample.rules.lua
316
sample.rules.lua
|
@ -1,316 +0,0 @@
|
||||||
local awful = require("awful")
|
|
||||||
|
|
||||||
|
|
||||||
-- }}}
|
|
||||||
|
|
||||||
local layouts =
|
|
||||||
{
|
|
||||||
awful.layout.suit.floating,
|
|
||||||
awful.layout.suit.tile,
|
|
||||||
awful.layout.suit.tile.left,
|
|
||||||
awful.layout.suit.tile.bottom,
|
|
||||||
awful.layout.suit.tile.top,
|
|
||||||
awful.layout.suit.fair,
|
|
||||||
awful.layout.suit.fair.horizontal,
|
|
||||||
awful.layout.suit.spiral,
|
|
||||||
awful.layout.suit.spiral.dwindle,
|
|
||||||
awful.layout.suit.max,
|
|
||||||
awful.layout.suit.max.fullscreen,
|
|
||||||
awful.layout.suit.magnifier
|
|
||||||
}
|
|
||||||
|
|
||||||
tags = {} --TODO remove
|
|
||||||
|
|
||||||
tyranic.tags = {
|
|
||||||
{
|
|
||||||
name = "Term",
|
|
||||||
init = true ,
|
|
||||||
exclusive = true ,
|
|
||||||
icon = utils.tools.invertedIconPath("term.png") ,
|
|
||||||
screen = {config.data().scr.pri, config.data().scr.sec} ,
|
|
||||||
layout = awful.layout.suit.tile ,
|
|
||||||
class = {
|
|
||||||
"xterm" , "urxvt" , "aterm","URxvt","XTerm"
|
|
||||||
},
|
|
||||||
match = {
|
|
||||||
"konsole"
|
|
||||||
}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Internet",
|
|
||||||
init = true ,
|
|
||||||
exclusive = true ,
|
|
||||||
icon = utils.tools.invertedIconPath("net.png") ,
|
|
||||||
screen = config.data().scr.pri ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {
|
|
||||||
"Opera" , "Firefox" , "Rekonq" , "Dillo" , "Arora",
|
|
||||||
"Chromium" , "nightly" , "Nightly" , "minefield" , "Minefield" }
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Files",
|
|
||||||
init = true ,
|
|
||||||
exclusive = true ,
|
|
||||||
icon = utils.tools.invertedIconPath("folder.png") ,
|
|
||||||
screen = config.data().scr.pri ,
|
|
||||||
layout = awful.layout.suit.tile ,
|
|
||||||
class = {
|
|
||||||
"Thunar" , "Konqueror" , "Dolphin" , "ark" , "Nautilus", }
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Develop",
|
|
||||||
init = true ,
|
|
||||||
exclusive = true ,
|
|
||||||
-- screen = {config.data().scr.pri, config.data().scr.sec} ,
|
|
||||||
icon = utils.tools.invertedIconPath("bug.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class ={
|
|
||||||
"Kate" , "KDevelop" , "Codeblocks", "Code::Blocks" , "DDD", "kate4" }
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Edit",
|
|
||||||
init = true ,
|
|
||||||
exclusive = true ,
|
|
||||||
-- screen = {config.data().scr.pri, config.data().scr.sec} ,
|
|
||||||
icon = utils.tools.invertedIconPath("editor.png") ,
|
|
||||||
layout = awful.layout.suit.tile.bottom ,
|
|
||||||
class = {
|
|
||||||
"KWrite" , "GVim" , "Emacs" , "Code::Blocks" , "DDD" }
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Media",
|
|
||||||
init = true ,
|
|
||||||
exclusive = true ,
|
|
||||||
icon = utils.tools.invertedIconPath("media.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {
|
|
||||||
"Xine" , "xine Panel" , "xine*" , "MPlayer" , "GMPlayer",
|
|
||||||
"XMMS" }
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Doc",
|
|
||||||
-- init = true ,
|
|
||||||
exclusive = true ,
|
|
||||||
icon = utils.tools.invertedIconPath("info.png") ,
|
|
||||||
-- screen = config.data().scr.music ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {
|
|
||||||
"Assistant" , "Okular" , "Evince" , "EPDFviewer" , "xpdf",
|
|
||||||
"Xpdf" , }
|
|
||||||
} ,
|
|
||||||
|
|
||||||
|
|
||||||
-----------------VOLATILE TAGS-----------------------
|
|
||||||
{
|
|
||||||
name = "Imaging",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
icon = utils.tools.invertedIconPath("image.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"Inkscape" , "KolourPaint" , "Krita" , "Karbon" , "Karbon14"}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Picture",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
icon = utils.tools.invertedIconPath("image.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"Digikam" , "F-Spot" , "GPicView" , "ShowPhoto" , "KPhotoAlbum"}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Video",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
icon = utils.tools.invertedIconPath("video.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"KDenLive" , "Cinelerra" , "AVIDeMux" , "Kino"}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Movie",
|
|
||||||
init = false ,
|
|
||||||
position = 12 ,
|
|
||||||
exclusive = true ,
|
|
||||||
icon = utils.tools.invertedIconPath("video.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"VLC"}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "3D",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
icon = utils.tools.invertedIconPath("3d.png") ,
|
|
||||||
layout = awful.layout.suit.max.fullscreen ,
|
|
||||||
class = {"Blender" , "Maya" , "K-3D" , "KPovModeler" , }
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Music",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
screen = config.data().scr.music or config.data().scr.pri ,
|
|
||||||
icon = utils.tools.invertedIconPath("media.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"Amarok" , "SongBird" , "last.fm" ,}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Down",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
icon = utils.tools.invertedIconPath("download.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"Transmission" , "KGet"}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Office",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
icon = utils.tools.invertedIconPath("office.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {
|
|
||||||
"OOWriter" , "OOCalc" , "OOMath" , "OOImpress" , "OOBase" ,
|
|
||||||
"SQLitebrowser" , "Silverun" , "Workbench" , "KWord" , "KSpread" ,
|
|
||||||
"KPres","Basket", "openoffice.org" , "OpenOffice.*" , }
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "RSS",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
icon = utils.tools.invertedIconPath("rss.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Chat",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
screen = config.data().scr.sec or config.data().scr.sec ,
|
|
||||||
icon = utils.tools.invertedIconPath("chat.png") ,
|
|
||||||
layout = awful.layout.suit.tile ,
|
|
||||||
class = {"Pidgin" , "Kopete" ,}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Burning",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
icon = utils.tools.invertedIconPath("burn.png") ,
|
|
||||||
layout = awful.layout.suit.tile ,
|
|
||||||
class = {"k3b"}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Mail",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
-- screen = config.data().scr.sec or config.data().scr.pri ,
|
|
||||||
icon = utils.tools.invertedIconPath("mail2.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"Thunderbird" , "kmail" , "evolution" ,}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "IRC",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = true ,
|
|
||||||
screen = config.data().scr.irc or config.data().scr.pri ,
|
|
||||||
init = true ,
|
|
||||||
spawn = "konversation" ,
|
|
||||||
icon = utils.tools.invertedIconPath("irc.png") ,
|
|
||||||
force_screen= true ,
|
|
||||||
layout = awful.layout.suit.fair ,
|
|
||||||
class = {"Konversation" , "Botch" , "WeeChat" , "weechat" , "irssi"}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Test",
|
|
||||||
init = false ,
|
|
||||||
position = 99 ,
|
|
||||||
exclusive = false ,
|
|
||||||
screen = config.data().scr.sec or config.data().scr.pri ,
|
|
||||||
leave_kills = true ,
|
|
||||||
persist = true ,
|
|
||||||
icon = utils.tools.invertedIconPath("tools.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Config",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = false ,
|
|
||||||
icon = utils.tools.invertedIconPath("tools.png") ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"Systemsettings", "Kcontrol" , "gconf-editor"}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Game",
|
|
||||||
init = false ,
|
|
||||||
screen = config.data().scr.pri ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = false ,
|
|
||||||
icon = utils.tools.invertedIconPath("game.png") ,
|
|
||||||
force_screen= true ,
|
|
||||||
layout = awful.layout.suit.max ,
|
|
||||||
class = {"sauer_client" , "Cube 2$" , "Cube 2: Sauerbraten" ,}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Gimp",
|
|
||||||
init = false ,
|
|
||||||
position = 10 ,
|
|
||||||
exclusive = false ,
|
|
||||||
icon = utils.tools.invertedIconPath("image.png") ,
|
|
||||||
layout = awful.layout.tile ,
|
|
||||||
nmaster = 1 ,
|
|
||||||
incncol = 10 ,
|
|
||||||
ncol = 2 ,
|
|
||||||
mwfact = 0.00 ,
|
|
||||||
class = {}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "Other",
|
|
||||||
init = true ,
|
|
||||||
position = 15 ,
|
|
||||||
exclusive = false ,
|
|
||||||
icon = utils.tools.invertedIconPath("term.png") ,
|
|
||||||
max_clients = 5 ,
|
|
||||||
screen = {3, 4, 5} ,
|
|
||||||
layout = awful.layout.suit.tile ,
|
|
||||||
class = {}
|
|
||||||
} ,
|
|
||||||
{
|
|
||||||
name = "MediaCenter",
|
|
||||||
init = true ,
|
|
||||||
position = 15 ,
|
|
||||||
exclusive = false ,
|
|
||||||
icon = utils.tools.invertedIconPath("video.png") ,
|
|
||||||
max_clients = 5 ,
|
|
||||||
screen = config.data().scr.media or config.data().scr.pri ,
|
|
||||||
init = "mythfrontend" ,
|
|
||||||
layout = awful.layout.suit.tile ,
|
|
||||||
class = {"mythfrontend" , "xbmc" ,}
|
|
||||||
} ,
|
|
||||||
}
|
|
||||||
tyranic.properties.intrusive = {
|
|
||||||
"ksnapshot" , "pinentry" , "gtksu" , "kcalc" , "xcalc" ,
|
|
||||||
"feh" , "Gradient editor", "About KDE" , "Paste Special", "Background color",
|
|
||||||
"kcolorchooser" , "plasmoidviewer" , "plasmaengineexplorer" , "Xephyr" , "kruler" ,
|
|
||||||
}
|
|
||||||
tyranic.properties.floating = {
|
|
||||||
"MPlayer" , "pinentry" , "ksnapshot" , "pinentry" , "gtksu" ,
|
|
||||||
"xine" , "feh" , "kmix" , "kcalc" , "xcalc" ,
|
|
||||||
"yakuake" , "Select Color$" , "kruler" , "kcolorchooser", "Paste Special" ,
|
|
||||||
"New Form" , "Insert Picture" , "kcharselect", "mythfrontend" , "plasmoidviewer"
|
|
||||||
}
|
|
||||||
|
|
||||||
tyranic.properties.ontop = {
|
|
||||||
"Xephyr" , "ksnapshot" , "kruler"
|
|
||||||
}
|
|
||||||
|
|
||||||
tyranic.properties.size_hints_honor = { xterm = false, URxvt = false, aterm = false, sauer_client = false, mythfrontend = false}
|
|
Loading…
Reference in New Issue