summaryrefslogtreecommitdiff
path: root/contrib/devilspie2.lua
blob: 71afe8d23bc9f83e5acb7499252576c823af2d61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
function string.starts(String,Start)
  return string.sub(String,1,string.len(Start))==Start
end

if string.starts(get_window_name(), "ImageMagick: ") then
  undecorate_window()
  x = math.random(0, 700)
  y = math.random(0, 500)
  set_window_position(x, y)
end