Rename local tyranical table, to avoid confusions.
This commit is contained in:
parent
939276d542
commit
a419fbc74e
|
@ -2,8 +2,9 @@
|
||||||
-- 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")
|
||||||
|
|
||||||
-- Standard awesome library
|
-- Standard awesome library
|
||||||
local tyranic = require("awesome-tyranical")
|
|
||||||
local gears = require("gears")
|
local gears = require("gears")
|
||||||
local awful = require("awful")
|
local awful = require("awful")
|
||||||
awful.rules = require("awful.rules")
|
awful.rules = require("awful.rules")
|
||||||
|
@ -76,7 +77,7 @@ local layouts =
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
|
|
||||||
tyranic.tags = {
|
tyranical.tags = {
|
||||||
{
|
{
|
||||||
name = "Term",
|
name = "Term",
|
||||||
init = true ,
|
init = true ,
|
||||||
|
@ -352,23 +353,23 @@ tyranic.tags = {
|
||||||
class = {"mythfrontend" , "xbmc" ,}
|
class = {"mythfrontend" , "xbmc" ,}
|
||||||
} ,
|
} ,
|
||||||
}
|
}
|
||||||
tyranic.properties.intrusive = {
|
tyranical.properties.intrusive = {
|
||||||
"ksnapshot" , "pinentry" , "gtksu" , "kcalc" , "xcalc" ,
|
"ksnapshot" , "pinentry" , "gtksu" , "kcalc" , "xcalc" ,
|
||||||
"feh" , "Gradient editor", "About KDE" , "Paste Special", "Background color",
|
"feh" , "Gradient editor", "About KDE" , "Paste Special", "Background color",
|
||||||
"kcolorchooser" , "plasmoidviewer" , "plasmaengineexplorer" , "Xephyr" , "kruler" ,
|
"kcolorchooser" , "plasmoidviewer" , "plasmaengineexplorer" , "Xephyr" , "kruler" ,
|
||||||
}
|
}
|
||||||
tyranic.properties.floating = {
|
tyranical.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"
|
||||||
}
|
}
|
||||||
|
|
||||||
tyranic.properties.ontop = {
|
tyranical.properties.ontop = {
|
||||||
"Xephyr" , "ksnapshot" , "kruler"
|
"Xephyr" , "ksnapshot" , "kruler"
|
||||||
}
|
}
|
||||||
|
|
||||||
tyranic.properties.size_hints_honor = { xterm = false, URxvt = false, aterm = false, sauer_client = false, mythfrontend = false}
|
tyranical.properties.size_hints_honor = { xterm = false, URxvt = false, aterm = false, sauer_client = false, mythfrontend = false}
|
||||||
|
|
||||||
|
|
||||||
-- {{{ Wallpaper
|
-- {{{ Wallpaper
|
||||||
|
|
Loading…
Reference in New Issue