Created
July 15, 2014 05:19
-
-
Save chase/5a212f414b44efc1f560 to your computer and use it in GitHub Desktop.
LINE Sticker Window Rule for Awesome WM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ rule = { instance = "Line.exe", name = "emoji" }, | |
properties = { floating = true, raise = true, focus = true }, | |
callback = function (c) | |
local g = c:geometry() | |
mouse.coords({x=g.x + (g.width/2), y=g.y + (g.height/2)}) | |
return awful.client.setslave(c) | |
end | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just add this rule to your rules in
rc.lua
. This expects that you are running LINE under Wine.