Project

General

Profile

unexist.dev

subtle

Assorted tidbits and projects

FAQ » History » Version 1

Christoph Kappel, 01/23/2018 02:11 PM

1 1 Christoph Kappel
h1. FAQ
2 1 Christoph Kappel
3 1 Christoph Kappel
{{toc}}
4 1 Christoph Kappel
5 1 Christoph Kappel
h2. How do I start program xyz?
6 1 Christoph Kappel
There are several way how to start a certain programm, here are the most common:\r\n\r\n* Start your program via your $HOME/.xinitrc:\r\n\r\n<pre><code class="ruby">\r\nsubtle &\r\nPID=$!\r\nsleep 2\r\nurxvt\r\nwait $PID\r\n</code></pre>\r\n\r\n* Start your program via [[grab]]:\r\n\r\n<pre><code class="ruby">\r\n"A-x" => "urxvt"\r\n</code></pre>\r\n\r\n_"dmenu":http://tools.suckless.org/dmenu is added as default launcher in the distributed config to make it more convenient._
7 1 Christoph Kappel
8 1 Christoph Kappel
h2. How do I move program xyz to view abc?
9 1 Christoph Kappel
Placement in [[subtle]] is +strict+ and completely done via the [[Tags|tagging system]] and is initially usually done in the [[config]].\r\n\r\nYou can change tags either with [[subtler]] or [[subtlext]] per runtime:\r\n\r\n[[Subtler]]:\r\n<pre><code class="ruby">\r\nsubtler -ta tag         #< Add new tag 'tag'\r\nsubtler -cT view tag    #< Tag view 'view' with tag 'tag'\r\nsubtler -vT client tag  #< Tag client 'client' with tag 'tag'\r\n</code></pre>\r\n\r\n[[Subtlext]]:\r\n<pre><code class="ruby">\r\ns = Subtlext::Subtle.new            #< Connect to subtle\r\ns.find_client("client").tag("tag")  #< Tag client 'client' with tag 'tag'\r\ns.find_view("view").tag("tag")      #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nIn _/usr/share/subtle/scripts_ is a tagging example script with the help of "dmenu":http://tools.suckless.org/dmenu.
10 1 Christoph Kappel
11 1 Christoph Kappel
h2. How do I move program xyz to view abc?
12 1 Christoph Kappel
Placement in [[subtle]] is +strict+ and completely done via the [[Tags|tagging system]] and is initially usually done in the [[config]].\r\n\r\nYou can change tags either with [[subtler]] or [[subtlext]] per runtime:\r\n\r\n[[Subtler]]:\r\n<pre><code class="ruby">\r\nsubtler -ta tag           #< Add new tag 'tag'\r\nsubtler -cT client tag  #< Tag client 'client' with tag 'tag'\r\nsubtler -vT view tag   #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\n[[Subtlext]]:\r\n<pre><code class="ruby">\r\ns = Subtlext::Subtle.new            #< Connect to subtle\r\ns.find_client("client").tag("tag")  #< Tag client 'client' with tag 'tag'\r\ns.find_view("view").tag("tag")    #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nIn _/usr/share/subtle/scripts_ is a tagging example script with the help of "dmenu":http://tools.suckless.org/dmenu.
13 1 Christoph Kappel
14 1 Christoph Kappel
h2. How do I move program xyz to view abc?
15 1 Christoph Kappel
Placement in [[subtle]] is +strict+ and completely done via the [[Tags|tagging system]] and is initially usually done in the [[config]].\r\n\r\nYou can change tags either with [[subtler]] or [[subtlext]] per runtime:\r\n\r\n[[Subtler]]:\r\n<pre><code class="ruby">\r\nsubtler -ta tag         #< Add new tag 'tag'\r\nsubtler -cT client tag  #< Tag client 'client' with tag 'tag'\r\nsubtler -vT view tag    #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\n[[Subtlext]]:\r\n<pre><code class="ruby">\r\ns = Subtlext::Subtle.new            #< Connect to subtle\r\ns.find_client("client").tag("tag")  #< Tag client 'client' with tag 'tag'\r\ns.find_view("view").tag("tag")      #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nIn _/usr/share/subtle/scripts_ is a tagging example script with the help of "dmenu":http://tools.suckless.org/dmenu.
16 1 Christoph Kappel
17 1 Christoph Kappel
h2. How does subtle match clients?
18 1 Christoph Kappel
[[Subtle]] matches the {{color(#ff0000, WM_NAME)}} and the {{color(#0000ff, WM_CLASS)}} property of a window and not the title. This to ensure the match is correct. \r\nThere are several ways to get these values, here are the most common:\r\n\r\n* "xprop":http://www.xfree86.org/current/xprop.1.html: Just select the window and have a look for the WM_CLASS line which usually look like this:\r\n\r\np{class:pre}. WM_CLASS(STRING) = "{{color(#ff0000, urxvt)}}", "{{color(#0000ff, URxvt)}}")\r\n\r\n* [[subtler]]: Run *[[subtler]] -cl* and look for the matching line:\r\n\r\np{class:pre}. 0x800007 * 1 1020x374 2 1 --- {{color(#ff0000, urxvt)}} ({{color(#0000ff,URxvt)}})
19 1 Christoph Kappel
20 1 Christoph Kappel
h2. How do I move program xyz to view abc?
21 1 Christoph Kappel
Placement in [[subtle]] is +strict+ and completely done via the [[Tags|tagging system]] and is initially usually done in the [[config]].\r\n\r\nYou can change tags either with [[subtler]] or [[subtlext]] per runtime:\r\n\r\n[[Subtler]]:\r\n<pre><code class="ruby">\r\nsubtler -ta tag         #< Add new tag 'tag'\r\nsubtler -cT client tag  #< Tag client 'client' with tag 'tag'\r\nsubtler -vT view tag    #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\n[[Subtlext]]:\r\n<pre><code class="ruby">\r\ns = Subtlext::Subtle.new            #< Connect to subtle\r\ns.find_client("client").tag("tag")  #< Tag client 'client' with tag 'tag'\r\ns.find_view("view").tag("tag")      #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\n[[Grabs]]:\r\n<pre><code class="ruby">\r\ndef move_view(client, view_id)\r\n  begin\r\n    cur  = current_view\r\n    view = views[view_id - 1]\r\n\r\n    begin\r\n      tag = find_tag(view.name)\r\n    rescue\r\n      tag = add_tag(view.name)\r\n    end\r\n\r\n    # Remove client from current tag\r\n    if(client.has_tag?(cur.name))\r\n      client.untag(cur.name)\r\n    end\r\n  \r\n    # Tag new view with itself\r\n    if(!view.has_tag?(tag))\r\n      view.tag(tag)\r\n    end\r\n\r\n    # Finally add tag to client\r\n    client.tag(tag)\r\n  rescue => err\r\n    puts err\r\n  end\r\nend\r\n\r\nGRABS = {\r\n  "A-F1" => lambda { |c| move_view(c, 1) },\r\n  "A-F2" => lambda { |c| move_view(c, 2) },\r\n  "A-F3" => lambda { |c| move_view(c, 3) },\r\n  "A-F4" => lambda { |c| move_view(c, 4) }\r\n}\r\n</code></pre>\r\n\r\nIn _/usr/share/subtle/scripts_ is a tagging example script with the help of "dmenu":http://tools.suckless.org/dmenu.
22 1 Christoph Kappel
23 1 Christoph Kappel
h2. How do I move program xyz to view abc?
24 1 Christoph Kappel
Placement in [[subtle]] is +strict+ and completely done via the [[Tags|tagging system]] and is initially usually done in the [[config]].\r\n\r\nYou can change tags either with [[subtler]] or [[subtlext]] per runtime:\r\n\r\n[[Subtler]]:\r\n<pre><code class="ruby">\r\nsubtler -ta tag         #< Add new tag 'tag'\r\nsubtler -cT client tag  #< Tag client 'client' with tag 'tag'\r\nsubtler -vT view tag    #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\n[[Subtlext]]:\r\n<pre><code class="ruby">\r\ns = Subtlext::Subtle.new            #< Connect to subtle\r\ns.find_client("client").tag("tag")  #< Tag client 'client' with tag 'tag'\r\ns.find_view("view").tag("tag")      #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nOr with [[grabs]] and "Ruby":http://www.ruby-lang.org lambdas:\r\n\r\n[[Grabs]]:\r\n<pre><code class="ruby">\r\ndef move_view(client, view_id)\r\n  begin\r\n    cur  = current_view\r\n    view = views[view_id - 1]\r\n\r\n    begin\r\n      tag = find_tag(view.name)\r\n    rescue\r\n      tag = add_tag(view.name)\r\n    end\r\n\r\n    # Remove client from current tag\r\n    if(client.has_tag?(cur.name))\r\n      client.untag(cur.name)\r\n    end\r\n  \r\n    # Tag new view with itself\r\n    if(!view.has_tag?(tag))\r\n      view.tag(tag)\r\n    end\r\n\r\n    # Finally add tag to client\r\n    client.tag(tag)\r\n  rescue => err\r\n    puts err\r\n  end\r\nend\r\n\r\nGRABS = {\r\n  "A-F1" => lambda { |c| move_view(c, 1) },\r\n  "A-F2" => lambda { |c| move_view(c, 2) },\r\n  "A-F3" => lambda { |c| move_view(c, 3) },\r\n  "A-F4" => lambda { |c| move_view(c, 4) }\r\n}\r\n</code></pre>\r\n\r\nIn _/usr/share/subtle/scripts_ is a tagging example script with the help of "dmenu":http://tools.suckless.org/dmenu.
25 1 Christoph Kappel
26 1 Christoph Kappel
h2. How do I move program xyz to view abc?
27 1 Christoph Kappel
Placement in [[subtle]] is +strict+ and completely done via the [[Tags|tagging system]] and is initially usually done in the [[config]].\r\n\r\nYou can change tags either with [[subtler]] or [[subtlext]] per runtime:\r\n\r\n[[Subtler]]:\r\n<pre><code class="ruby">\r\nsubtler -ta tag         #< Add new tag 'tag'\r\nsubtler -cT client tag  #< Tag client 'client' with tag 'tag'\r\nsubtler -vT view tag    #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\n[[Subtlext]]:\r\n<pre><code class="ruby">\r\ns = Subtlext::Subtle.new            #< Connect to subtle\r\ns.find_client("client").tag("tag")  #< Tag client 'client' with tag 'tag'\r\ns.find_view("view").tag("tag")      #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nPlease also have a look at the [[recipes]] wiki page which also includes two examples how to move clients.\r\n\r\nIn _/usr/share/subtle/scripts_ is a tagging example script with the help of "dmenu":http://tools.suckless.org/dmenu.
28 1 Christoph Kappel
29 1 Christoph Kappel
h2. How do I set a wallpaper in subtle?
30 1 Christoph Kappel
[[subtle]] itself has no own functionality to set a wallpaper, _~/.xinitrc_ is perfectly suited for this. \r\n\r\nDue the design of [[subtle]] sets background color of the root window and therefore overwrites any root pixmap set before. \r\n\r\nThis can be bypassed with this:\r\n\r\n<pre><code class="ruby">subtle &\r\nPID=$!\r\ndisplay -window root pixmap.png\r\nwait $PID\r\n</code></pre>
31 1 Christoph Kappel
32 1 Christoph Kappel
h2. How do I set a wallpaper in subtle?
33 1 Christoph Kappel
[[subtle]] itself has no own functionality to set a wallpaper, _~/.xinitrc_ is perfectly suited for this. \r\n\r\nDue the design of [[subtle]] sets background color of the root window and therefore overwrites any root pixmap set before. \r\n\r\nThis can be bypassed with this:\r\n\r\n<pre><code class="ruby">subtle &\r\nPID=$!\r\ndisplay -window root pixmap.png\r\nwait $PID\r\n</code></pre>\r\n\r\nOr just comment out the background line.
34 1 Christoph Kappel
35 1 Christoph Kappel
h2. How do I run a java program?
36 1 Christoph Kappel
"Java":http://java.com *expects* a certain behaviour (_reparenting of client windows_) of a window manager which is not part of any standard, therefore some "Java":http://java.com programs just show a white canvas.\r\n\r\nIf this happens just try to start your program like this:\r\n\r\n<pre><code class="shell">AWT_TOOLKIT=MToolkit program</code></pre>\r\n\r\nThis changes the default tookit of "Java":http://java.com to MToolkit, which is known to work with non-reparenting windows managers like [[subtle]]. Dependend on your "OpenJDK":http://openjdk.java.net version and your architecture this may either lead to a segmentation fault or your "OpenJDK":http://openjdk.java.net just has no support for *MToolkit*. In this case check if your distribution has applied a patch for this issue which allows something like this to change the default behaviour:\r\n\r\n<pre><code class="shell">_JAVA_AWT_WM_NONREPARENTING=1 program</code></pre>\r\n\r\nGenerally this problem is really long lasting, see here: \r\n\r\nhttp://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6511454\r\nhttp://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508650\r\n\r\n
37 1 Christoph Kappel
38 1 Christoph Kappel
h2. How do I move program xyz to view abc?
39 1 Christoph Kappel
Placement in [[subtle]] is +strict+ and completely done via the [[Tags|tagging system]] and is initially usually done in the [[config]].\r\n\r\nYou can change tags either with [[subtler]] or [[subtlext]] per runtime:\r\n\r\n[[Subtler]]:\r\n<pre><code class="ruby">\r\nsubtler -ta tag         #< Add new tag 'tag'\r\nsubtler -cT client tag  #< Tag client 'client' with tag 'tag'\r\nsubtler -vT view tag    #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\n[[Subtlext]]:\r\n<pre><code class="ruby">\r\ns = Subtlext::Subtle.new            #< Connect to subtle\r\ns.find_client("client").tag("tag")  #< Tag client 'client' with tag 'tag'\r\ns.find_view("view").tag("tag")      #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nPlease also have a look at the [[recipes]] wiki page which also includes two examples how to move clients.\r\n\r\nIn _/usr/share/subtle/scripts_ is a tagging example script with the help of "dmenu":http://tools.suckless.org/dmenu.
40 1 Christoph Kappel
41 1 Christoph Kappel
h2. How do I start program xyz?
42 1 Christoph Kappel
There are several way how to start a certain programm, here are the most common:\r\n\r\n* Start your program via your $HOME/.xinitrc:\r\n\r\n<pre><code class="ruby">\r\nsubtle &\r\nPID=$!\r\nsleep 2\r\nurxvt\r\nwait $PID\r\n</code></pre>\r\n\r\n* Start your program via [[grab]]:\r\n\r\n<pre><code class="ruby">\r\n"A-x" => "urxvt"\r\n</code></pre>\r\n\r\n_"dmenu":http://tools.suckless.org/dmenu is added as default launcher in the distributed config to make it more convenient._
43 1 Christoph Kappel
44 1 Christoph Kappel
h2. How do I run a java program?
45 1 Christoph Kappel
"Java":http://java.com *expects* a certain behaviour (_reparenting of client windows_) of a window manager which is not part of any standard, therefore some "Java":http://java.com programs just show a white canvas.\r\n\r\nIf this happens just try to start your program like this:\r\n\r\n<pre><code class="shell">AWT_TOOLKIT=MToolkit program</code></pre>\r\n\r\nThis changes the default tookit of "Java":http://java.com to MToolkit, which is known to work with non-reparenting windows managers like [[subtle]]. Dependend on your "OpenJDK":http://openjdk.java.net version and your architecture this may either lead to a segmentation fault or your "OpenJDK":http://openjdk.java.net just has no support for *MToolkit*. In this case check if your distribution has applied a patch for this issue which allows something like this to change the default behaviour:\r\n\r\n<pre><code class="shell">_JAVA_AWT_WM_NONREPARENTING=1 program</code></pre>\r\n\r\nGenerally this problem is really long lasting, see here: \r\n\r\nhttp://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6511454\r\nhttp://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508650\r\n\r\n
46 1 Christoph Kappel
47 1 Christoph Kappel
h2. How do I run a java program?
48 1 Christoph Kappel
"Java":http://java.com *expects* a certain behaviour (_reparenting of client windows_) of a window manager which is not part of any standard, therefore some "Java":http://java.com programs just show a white canvas.\r\n\r\nIf this happens just try to start your program like this:\r\n\r\n<pre><code class="shell">AWT_TOOLKIT=MToolkit program</code></pre>\r\n\r\nThis changes the default tookit of "Java":http://java.com to MToolkit, which is known to work with non-reparenting windows managers like [[subtle]]. Dependend on your "OpenJDK":http://openjdk.java.net version and your architecture this may either lead to a segmentation fault or your "OpenJDK":http://openjdk.java.net just has no support for *MToolkit*. In this case check if your distribution has applied a patch for this issue which allows something like this to change the default behaviour:\r\n\r\n<pre><code class="shell">_JAVA_AWT_WM_NONREPARENTING=1 program</code></pre>\r\n\r\nIn case both doesn't work there is a third option: The JDK internally uses a hardcoded list of window managers that are non-reparenting, the "suckless":http://suckless.org made the tool "wmname":http://tools.suckless.org/wmname to change the name of the wm and just lie to Java. \r\n\r\nGenerally this problem is really long lasting, see here: \r\n\r\nhttp://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6511454\r\nhttp://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508650\r\n\r\n
49 1 Christoph Kappel
50 1 Christoph Kappel
h2. How do I run a java program?
51 1 Christoph Kappel
"Java":http://java.com *expects* a certain behaviour (_reparenting of client windows_) of a window manager which is not part of any standard, therefore some "Java":http://java.com programs just show a white canvas.\r\n\r\nIf this happens just try to start your program like this:\r\n\r\n<pre><code class="shell">AWT_TOOLKIT=MToolkit program</code></pre>\r\n\r\nThis changes the default tookit of "Java":http://java.com to MToolkit, which is known to work with non-reparenting windows managers like [[subtle]]. Dependend on your "OpenJDK":http://openjdk.java.net version and your architecture this may either lead to a segmentation fault or your "OpenJDK":http://openjdk.java.net just has no support for *MToolkit*. In this case check if your distribution has applied a patch for this issue which allows something like this to change the default behaviour:\r\n\r\n<pre><code class="shell">_JAVA_AWT_WM_NONREPARENTING=1 program</code></pre>\r\n\r\nIn case both doesn't work there is a third option: The JDK internally uses a hardcoded list of window managers that are non-reparenting, the "suckless":http://suckless.org guys made the tool "wmname":http://tools.suckless.org/wmname to change the name of the wm and just lie to Java. \r\n\r\nGenerally this problem is really long lasting, see here: \r\n\r\nhttp://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6511454\r\nhttp://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508650\r\n\r\n
52 1 Christoph Kappel
53 1 Christoph Kappel
h2. How do I move program xyz to view abc?
54 1 Christoph Kappel
Placement in [[subtle]] is +strict+ and completely done via the [[Tags|tagging system]] and is initially usually done in the [[config]].\r\n\r\nYou can change tags either with [[subtler]] or [[subtlext]] per runtime:\r\n\r\n[[Subtler]]:\r\n<pre><code class="ruby">\r\nsubtler -ta tag         #< Add new tag 'tag'\r\nsubtler -cT client tag  #< Tag client 'client' with tag 'tag'\r\nsubtler -vT view tag    #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\n[[Subtlext]]:\r\n<pre><code class="ruby">\r\nSubtlext::Tag.new("tag").save       #< Add new tag 'tag'\r\nSubtlext::Client["client"] + "tag"  #< Tag client 'client' with tag 'tag'\r\nSubtlext::View["view"] + "tag"      #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nPlease also have a look at the [[recipes]] wiki page which also includes two examples how to move clients.\r\n\r\nIn _/usr/share/subtle/scripts_ is a tagging example script with the help of "dmenu":http://tools.suckless.org/dmenu.
55 1 Christoph Kappel
56 1 Christoph Kappel
h2. How do I move program xyz to view abc?
57 1 Christoph Kappel
Placement in [[subtle]] is +strict+ and completely done via the [[Tags|tagging system]] and is initially usually done in the [[config]].\r\n\r\nYou can change tags either with [[subtler]] or [[subtlext]] per runtime:\r\n\r\n[[Subtler]]:\r\n<pre><code class="ruby">\r\nsubtler -ta tag         #< Add new tag 'tag'\r\nsubtler -cT client tag  #< Tag client 'client' with tag 'tag'\r\nsubtler -vT view tag    #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\n[[Subtlext]]:\r\n<pre><code class="ruby">\r\nSubtlext::Tag.new("tag").save       #< Add new tag 'tag'\r\nSubtlext::Client["client"] + "tag"  #< Tag client 'client' with tag 'tag'\r\nSubtlext::View["view"] + "tag"      #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nPlease also have a look at the [[recipes]] wiki page which also includes two examples how to move clients.\r\n\r\nIn _/usr/share/subtle/scripts_ is a tagging example script with the help of "dmenu":http://tools.suckless.org/dmenu.
58 1 Christoph Kappel
59 1 Christoph Kappel
h2. How do I add tags to console based programs?
60 1 Christoph Kappel
Generally [[subtle]] can apply [[Tagging|tags]] based on the {{color(#0000ff, WM_NAME)}} and both {{color(#ff0000, WM_CLASS)}} components. Console based programs like "irssi":http://irssi.org can be started like this and will change the {{color(#0000ff, WM_NAME)}} of the terminal:\r\n\r\n<pre><code class="bash">urxvt -e irssi</code></pre>\r\n\r\nInspecting the terminal with "xprop":http://www.xfree86.org/current/xprop.1.html:\r\n\r\n<pre><code class="bash">{{color(#0000ff, WM_NAME)}}(STRING) = "irssi"\r\n{{color(#ff0000, WM_CLASS)}}(STRING) = {{color(#aa0000, "urxvt")}}, {{color(#ff00ff, "URxvt")}}</code></pre>\r\n\r\nSo if we want to tag this window there are some things that should be considered:\r\n\r\n* "irssi":http://irssi.org updates the {{color(#0000ff, WM_NAME)}} only\r\n* [[Tagging]] matches per default both {{color(#ff0000, WM_CLASS)}} components ({{color(#aa0000, instance)}} and {{color(#ff00ff, class)}} name)\r\n* [[Tagging|Tags]] are applied when a window is mapped - that is *before* the terminal launches "irssi":http://irssi.org\r\n\r\nTo safely [[Tagging|tag]] it's better to change the {{color(#aa0000, instance)}} name of the terminal like this:\r\n\r\n<pre><code class="bash">urxvt -name irssi -e irssi</code></pre>\r\n\r\nThis results in following (via "xprop":http://www.xfree86.org/current/xprop.1.html):\r\n\r\n<pre><code class="bash">{{color(#0000ff, WM_NAME)}}(STRING) = "irssi"\r\n{{color(#ff0000, WM_CLASS)}}(STRING) = {{color(#aa0000, "irssi")}}, {{color(#ff00ff, "URxvt")}}</code></pre>\r\n\r\nA [[Tagging|tag]] for this could be:\r\n\r\n<pre><code class="ruby">tag "irssi" do\r\n  match "irssi"\r\nend</code></pre>\r\n\r\nPlease keep in mind, that the {{color(#ff0000, WM_CLASS)}} {{color(#ff00ff, class)}} name is still *URxvt* and will match others [[Tagging|tags]] too.
61 1 Christoph Kappel
62 1 Christoph Kappel
h2. How do I tag console based programs?
63 1 Christoph Kappel
Generally [[subtle]] can apply [[Tagging|tags]] based on the {{color(#0000ff, WM_NAME)}} and both {{color(#ff0000, WM_CLASS)}} components. Console based programs like "irssi":http://irssi.org can be started like this and will change the {{color(#0000ff, WM_NAME)}} of the terminal:\r\n\r\n<pre><code class="bash">urxvt -e irssi</code></pre>\r\n\r\nInspecting the terminal with "xprop":http://www.xfree86.org/current/xprop.1.html:\r\n\r\n<pre><code class="bash">{{color(#0000ff, WM_NAME)}}(STRING) = "irssi"\r\n{{color(#ff0000, WM_CLASS)}}(STRING) = {{color(#aa0000, "urxvt")}}, {{color(#ff00ff, "URxvt")}}</code></pre>\r\n\r\nSo if we want to tag this window there are some things that should be considered:\r\n\r\n* "irssi":http://irssi.org updates the {{color(#0000ff, WM_NAME)}} only\r\n* [[Tagging]] matches per default both {{color(#ff0000, WM_CLASS)}} components ({{color(#aa0000, instance)}} and {{color(#ff00ff, class)}} name)\r\n* [[Tagging|Tags]] are applied when a window is mapped - that is *before* the terminal launches "irssi":http://irssi.org\r\n\r\nTo safely [[Tagging|tag]] it's better to change the {{color(#aa0000, instance)}} name of the terminal like this:\r\n\r\n<pre><code class="bash">urxvt -name irssi -e irssi</code></pre>\r\n\r\nThis results in following (via "xprop":http://www.xfree86.org/current/xprop.1.html):\r\n\r\n<pre><code class="bash">{{color(#0000ff, WM_NAME)}}(STRING) = "irssi"\r\n{{color(#ff0000, WM_CLASS)}}(STRING) = {{color(#aa0000, "irssi")}}, {{color(#ff00ff, "URxvt")}}</code></pre>\r\n\r\nA [[Tagging|tag]] for this could be:\r\n\r\n<pre><code class="ruby">tag "irssi" do\r\n  match "irssi"\r\nend</code></pre>\r\n\r\nPlease keep in mind, that the {{color(#ff0000, WM_CLASS)}} {{color(#ff00ff, class)}} name is still *URxvt* and will match others [[Tagging|tags]] too.
64 1 Christoph Kappel
65 1 Christoph Kappel
h2. How does subtle match clients?
66 1 Christoph Kappel
[[subtle]] matches the {{color(#ff0000, WM_NAME)}} and the {{color(#0000ff, WM_CLASS)}} property of a window and not the title. This to ensure the match is correct. \r\nThere are several ways to get these values, here are the most common:\r\n\r\nSelect the window with "xprop":http://www.xfree86.org/current/xprop.1.htmland have a look for the {{color(#ff0000, WM_NAME)}} and {{color(#0000ff, WM_CLASS)}} lines which usually look like this:\r\n\r\n<pre><code class="bash">{{color(#0000ff, WM_NAME)}}(STRING) = "urxvt"\r\n{{color(#ff0000, WM_CLASS)}}(STRING) = {{color(#aa0000, "irssi")}}, {{color(#ff00ff, "URxvt")}}</code></pre>\r\n\r\nRun *[[subtler]] -cl* and look for the matching line:\r\n\r\n<pre><code class="bash">0x800007 * 1 1020x374 2 1 --- {{color(#ff0000, urxvt)}} ({{color(#0000ff,URxvt)}})</code></pre>
67 1 Christoph Kappel
68 1 Christoph Kappel
h2. How does subtle match clients?
69 1 Christoph Kappel
[[subtle]] matches the {{color(#ff0000, WM_NAME)}} and the {{color(#0000ff, WM_CLASS)}} property of a window and not the title. This to ensure the match is correct. \r\nThere are several ways to get these values, here are the most common:\r\n\r\nSelect the window with "xprop":http://www.xfree86.org/current/xprop.1.htmland have a look for the {{color(#ff0000, WM_NAME)}} and {{color(#0000ff, WM_CLASS)}} lines which usually look like this:\r\n\r\n<pre><code class="bash">{{color(#0000ff, WM_NAME)}}(STRING) = "urxvt"\r\n{{color(#ff0000, WM_CLASS)}}(STRING) = {{color(#aa0000, "irssi")}}, {{color(#ff00ff, "URxvt")}}</code></pre>\r\n\r\nRun *[[subtler]] -cl* and look for the matching line:\r\n\r\n<pre><code class="bash">0x800007 * 1 1020x374 2 1 --- {{color(#ff0000, urxvt)}} ({{color(#0000ff,URxvt)}})</code></pre>
70 1 Christoph Kappel
71 1 Christoph Kappel
h2. How can I use subtle without numpad?
72 1 Christoph Kappel
Per default [[subtle]] uses the numpad, because it's easier to remind the different postions when you can see them. Generally this is just a suggestion, it's up to you to change the grabs to your needs - any keys will work. \r\n\r\nKeys that also have proven to work well are *q-w-e*, *a-s-d* and *y-x-c*:\r\n\r\n<pre><code class="ruby">grab "W-q", [ :top_left,     :top_left66,     :top_left33     ]\r\ngrab "W-w", [ :top,          :top66,          :top33          ]\r\ngrab "W-e", [ :top_right,    :top_right66,    :top_right33    ]\r\ngrab "W-a", [ :left,         :left66,         :left33         ]\r\ngrab "W-s", [ :center,       :center66,       :center33       ]\r\ngrab "W-d", [ :right,        :right66,        :right33        ]\r\ngrab "W-y", [ :bottom_left,  :bottom_left66,  :bottom_left33  ]\r\ngrab "W-x", [ :bottom,       :bottom66,       :bottom33       ]\r\ngrab "W-c", [ :bottom_right, :bottom_right66, :bottom_right33 ]\r\n</code></pre>\r\n\r\nYou can find more about assigning keys [[Grabs|here]].
73 1 Christoph Kappel
74 1 Christoph Kappel
h2. How do I tag console based programs?
75 1 Christoph Kappel
Generally [[subtle]] can apply [[Tagging|tags]] based on the {{color(#0000ff, WM_NAME)}} and both {{color(#ff0000, WM_CLASS)}} components. Console based programs like "irssi":http://irssi.org can be started like this and will change the {{color(#0000ff, WM_NAME)}} of the terminal:\r\n\r\n<pre><code class="bash">urxvt -e irssi</code></pre>\r\n\r\nInspecting the terminal with "xprop":http://www.xfree86.org/current/xprop.1.html:\r\n\r\n<pre><code class="bash">{{color(#0000ff, WM_NAME)}}(STRING) = "irssi"\r\n{{color(#ff0000, WM_CLASS)}}(STRING) = {{color(#aa0000, "urxvt")}}, {{color(#ff00ff, "URxvt")}}</code></pre>\r\n\r\nSo if we want to tag this window there are some things that should be considered:\r\n\r\n* "irssi":http://irssi.org updates the {{color(#0000ff, WM_NAME)}} only\r\n* [[Tagging]] matches per default both {{color(#ff0000, WM_CLASS)}} components ({{color(#aa0000, instance)}} and {{color(#ff00ff, class)}} name)\r\n* [[Tagging|Tags]] are applied when a window is mapped - that is *before* the terminal launches "irssi":http://irssi.org\r\n\r\nTo safely [[Tagging|tag]] it's better to change the {{color(#aa0000, instance)}} name of the terminal like this:\r\n\r\n<pre><code class="bash">urxvt -name irssi -e irssi</code></pre>\r\n\r\nThis results in following (via "xprop":http://www.xfree86.org/current/xprop.1.html):\r\n\r\n<pre><code class="bash">{{color(#0000ff, WM_NAME)}}(STRING) = "irssi"\r\n{{color(#ff0000, WM_CLASS)}}(STRING) = {{color(#aa0000, "irssi")}}, {{color(#ff00ff, "URxvt")}}</code></pre>\r\n\r\nA [[Tagging|tag]] for this could be:\r\n\r\n<pre><code class="ruby">tag "irssi" do\r\n  match "irssi"\r\nend</code></pre>\r\n\r\nPlease keep in mind, that the {{color(#ff0000, WM_CLASS)}} {{color(#ff00ff, class)}} name is still *URxvt* and will match other [[Tagging|tags]] too.
76 1 Christoph Kappel
77 1 Christoph Kappel
h2. How do I tag console based programs?
78 1 Christoph Kappel
Generally [[subtle]] can apply [[Tagging|tags]] based on the {{color(#0000ff, WM_NAME)}} and both {{color(#ff0000, WM_CLASS)}} components. Console based programs like "irssi":http://irssi.org can be started like this and will change the {{color(#0000ff, WM_NAME)}} of the terminal:\r\n\r\n<pre><code class="bash">urxvt -e irssi</code></pre>\r\n\r\nInspecting the terminal with "xprop":http://www.xfree86.org/current/xprop.1.html:\r\n\r\n<pre><code class="bash">{{color(#0000ff, WM_NAME)}}(STRING) = "irssi"\r\n{{color(#ff0000, WM_CLASS)}}(STRING) = {{color(#aa0000, "urxvt")}}, {{color(#ff00ff, "URxvt")}}</code></pre>\r\n\r\nSo if we want to tag this window there are some things that should be considered:\r\n\r\n* "irssi":http://irssi.org updates the {{color(#0000ff, WM_NAME)}} only\r\n* [[Tagging]] matches per default both {{color(#ff0000, WM_CLASS)}} components ({{color(#aa0000, instance)}} and {{color(#ff00ff, class)}} name)\r\n* [[Tagging|Tags]] are applied when a window is mapped - that is *before* the terminal launches "irssi":http://irssi.org\r\n\r\nTo safely [[Tagging|tag]] it's better to change the {{color(#aa0000, instance)}} name of the terminal like this:\r\n\r\n<pre><code class="bash">urxvt -name irssi -e irssi</code></pre>\r\n\r\nThis results in following (via "xprop":http://www.xfree86.org/current/xprop.1.html):\r\n\r\n<pre><code class="bash">{{color(#0000ff, WM_NAME)}}(STRING) = "irssi"\r\n{{color(#ff0000, WM_CLASS)}}(STRING) = {{color(#aa0000, "irssi")}}, {{color(#ff00ff, "URxvt")}}</code></pre>\r\n\r\nA [[Tagging|tag]] for this could be:\r\n\r\n<pre><code class="ruby">tag "irssi" do\r\n  match :instance => "irssi"\r\nend</code></pre>\r\n\r\nPlease keep in mind, that the {{color(#ff0000, WM_CLASS)}} {{color(#ff00ff, class)}} name is still *URxvt* and will match other [[Tagging|tags]] too.
79 1 Christoph Kappel
80 1 Christoph Kappel
h2. How do I run a program on startup?
81 1 Christoph Kappel
Let's say you want urxvt to start after subtle, and for some reason @echo "urxvt" >> ~/.xinitrc@ is just not cutting it. Using the :start hook and Subtlext we can simulate autostart like so:\r\n\r\n<pre>\r\non :start do\r\n  Subtlext::Subtle.spawn "urxvt"\r\nend\r\n</pre>
82 1 Christoph Kappel
83 1 Christoph Kappel
h2. How can I use subtle without numpad?
84 1 Christoph Kappel
Per default [[subtle]] uses the numpad, because it's easier to remind the different postions when you can see them. Generally this is just a suggestion, it's up to you to change the grabs to your needs - any keys will work. \r\n\r\nKeys that also have proven to work well are *q-w-e*, *a-s-d* and *y-x-c*:\r\n\r\n<pre><code class="ruby">grab "W-q", [ :top_left,     :top_left66,     :top_left33     ]\r\ngrab "W-w", [ :top,          :top66,          :top33          ]\r\ngrab "W-e", [ :top_right,    :top_right66,    :top_right33    ]\r\ngrab "W-a", [ :left,         :left66,         :left33         ]\r\ngrab "W-s", [ :center,       :center66,       :center33       ]\r\ngrab "W-d", [ :right,        :right66,        :right33        ]\r\n\r\n# QWERTZ\r\ngrab "W-y", [ :bottom_left,  :bottom_left66,  :bottom_left33  ]\r\n\r\n# QWERTY\r\ngrab "W-z", [ :bottom_left,  :bottom_left66,  :bottom_left33  ]\r\n\r\ngrab "W-x", [ :bottom,       :bottom66,       :bottom33       ]\r\ngrab "W-c", [ :bottom_right, :bottom_right66, :bottom_right33 ]\r\n</code></pre>\r\n\r\n\r\nYou can find more about assigning keys [[Grabs|here]].
85 1 Christoph Kappel
86 1 Christoph Kappel
h2. How do I tag console based programs?
87 1 Christoph Kappel
Generally [[subtle]] can apply [[Tagging|tags]] based on the {{color(#0000ff, WM_NAME)}} and both {{color(#ff0000, WM_CLASS)}} components. Console based programs like "irssi":http://irssi.org can be started like this and will change the {{color(#0000ff, WM_NAME)}} of the terminal:\r\n\r\n<pre><code class="bash">urxvt -e irssi</code></pre>\r\n\r\nInspecting the terminal with "xprop":http://www.xfree86.org/current/xprop.1.html:\r\n\r\n<pre><code class="bash">{{color(#0000ff, WM_NAME)}}(STRING) = "irssi"\r\n{{color(#ff0000, WM_CLASS)}}(STRING) = {{color(#aa0000, "urxvt")}}, {{color(#ff00ff, "URxvt")}}</code></pre>\r\n\r\nSo if we want to tag this window there are some things that should be considered:\r\n\r\n* "irssi":http://irssi.org updates the {{color(#0000ff, WM_NAME)}} only\r\n* [[Tagging]] matches per default both {{color(#ff0000, WM_CLASS)}} components ({{color(#aa0000, instance)}} and {{color(#ff00ff, class)}} name)\r\n* [[Tagging|Tags]] are applied when a window is mapped - that is *before* the terminal launches "irssi":http://irssi.org\r\n\r\nTo safely [[Tagging|tag]] it's better to change the {{color(#aa0000, instance)}} name of the terminal like this:\r\n\r\n<pre><code class="bash">urxvt -name irssi -e irssi</code></pre>\r\n\r\nThis results in following (via "xprop":http://www.xfree86.org/current/xprop.1.html):\r\n\r\n<pre><code class="bash">{{color(#0000ff, WM_NAME)}}(STRING) = "irssi"\r\n{{color(#ff0000, WM_CLASS)}}(STRING) = {{color(#aa0000, "irssi")}}, {{color(#ff00ff, "URxvt")}}</code></pre>\r\n\r\nA [[Tagging|tag]] for this could be:\r\n\r\n<pre><code class="ruby">tag "irssi" do\r\n  match :instance => "irssi"\r\nend</code></pre>\r\n\r\nPlease keep in mind, that the {{color(#ff0000, WM_CLASS)}} {{color(#ff00ff, class)}} name is still *URxvt* and will match other [[Tagging|tags]] too. To avoid that there is the *exclude* match, it works similar to the normal match but excludes certain windows:\r\n\r\n<pre><code class="ruby">tag "terms" do\r\n  exclude :instance => "irssi"\r\nend</code></pre>
88 1 Christoph Kappel
89 1 Christoph Kappel
h2. Why does program XYZ appears/turns as/to a gray canvas?
90 1 Christoph Kappel
Generally, this happens, when a program needs a specific aspect ratio and [[subtle]] sets a gravity that violates this. Windows can tell the window manager about this kind of preferences via their size hints and [[subtle]] can honor those:\r\n\r\n# Enable size hints globally with the _:resize_ option\r\n  <pre>{{hide}}<code class="ruby">set :resize, true</code></pre>\r\n# Enable this per program via [[tagging|tag]]\r\n  <pre>{{hide}}<code class="ruby">tag "name"\r\n  match  "name"\r\n  resize true\r\nend
91 1 Christoph Kappel
92 1 Christoph Kappel
h2. How can I delete a sublet manually?
93 1 Christoph Kappel
[[Sublets]] usually consist of a *&#42;.rb* file, a *&#42;.spec* file and one or more icons. All these files can be found in their respective folder in @$XDG_DATA_HOME/subtle@ resp. @~/.local/share/subtle@. After deleting the [[sublets|sublet]] files the cache of [[sur]] needs to be updated or otherwise [[sur]] will think the [[sublets|sublet]] is still installed: @sur update -l@
94 1 Christoph Kappel
95 1 Christoph Kappel
h2. How can I manually delete a sublet?
96 1 Christoph Kappel
[[Sublets]] usually consist of a *&#42;.rb* file, a *&#42;.spec* file and one or more icons. All these files can be found in their respective folder in @$XDG_DATA_HOME/subtle@ resp. @~/.local/share/subtle@. After deleting the [[sublets|sublet]] files the cache of [[sur]] needs to be updated or otherwise [[sur]] will think the [[sublets|sublet]] is still installed: @sur update -l@
97 1 Christoph Kappel
98 1 Christoph Kappel
h2. Where is the output window of flash in fullscreen?
99 1 Christoph Kappel
For flash, browsers seem to use window instance and class names that doesn't match the browser values. Therefore the windows will usually appear on the default view.\r\n\r\nFollowing names are currently in use:\r\n\r\n|_. Browser |_. WM_NAME            |_. WM_CLASS                                 |\r\n| Firefox   | <unknown>            | "<unknown>", "<unknown>"                   |\r\n| Chromium  | exe                  | "exe", "Exe"                               |\r\n| Opera     | "operapluginwrapper" | "operapluginwrapper", "Operapluginwrapper" |\r\n\r\nThe easiest way to avoid that is to add a [[tagging|tag]] that makes these windows sticky:\r\n\r\n<pre>{{hide}}<code class="ruby">tag "flash" do\r\n  match "<unkown>|exe|operapluginwrapper"\r\n  stick true\r\nend</code></pre>
100 1 Christoph Kappel
101 1 Christoph Kappel
h2. How do I run a program on startup/autostart?
102 1 Christoph Kappel
Let's say you want "urxvt":http://software.schmorp.de/pkg/rxvt-unicode.html to start after [[subtle]], and for some reason @echo "urxvt" >> ~/.xinitrc@ is just not cutting it. Using the *&#58;start* hook and [[subtlext]] we can simulate autostart like so:\r\n\r\n<pre>{{hide}}<code class="ruby">\r\non :start do\r\n  Subtlext::Subtle.spawn "urxvt"\r\nend\r\n</pre></code>
103 1 Christoph Kappel
104 1 Christoph Kappel
h2. How do I start program xyz?
105 1 Christoph Kappel
There are several way how to start a certain programm, here are the most common:\r\n\r\n* Start your program via your $HOME/.xinitrc:\r\n\r\n<pre><code class="ruby">\r\nsubtle &\r\nPID=$!\r\nsleep 2\r\nurxvt\r\nwait $PID\r\n</code></pre>\r\n\r\n* Start your program via [[grabs]]:\r\n\r\n<pre><code class="ruby">\r\n"A-x" => "urxvt"\r\n</code></pre>\r\n\r\nAdditionally there are many launchers available like "dmenu":http://tools.suckless.org/dmenu and there is even a launcher especially designed for [[subtle]], you can find it in "subtle-contrib":http://subforge.org/projects/subtle-contrib/wiki#Launcher.\r\n
106 1 Christoph Kappel
107 1 Christoph Kappel
h2. How do I start program XYZ?
108 1 Christoph Kappel
There are several way how to start a certain programm, here are the most common:\r\n\r\n* Start your program via your $HOME/.xinitrc:\r\n\r\n<pre><code class="ruby">\r\nsubtle &\r\nPID=$!\r\nsleep 2\r\nurxvt\r\nwait $PID\r\n</code></pre>\r\n\r\n* Start your program via [[grabs]]:\r\n\r\n<pre><code class="ruby">\r\n"A-x" => "urxvt"\r\n</code></pre>\r\n\r\nAdditionally there are many launchers available like "dmenu":http://tools.suckless.org/dmenu and there is even a launcher especially designed for [[subtle]], you can find it in "subtle-contrib":http://subforge.org/projects/subtle-contrib/wiki#Launcher.\r\n
109 1 Christoph Kappel
110 1 Christoph Kappel
h2. Why does program XYZ appears/turns as/to a gray canvas?
111 1 Christoph Kappel
Generally, this happens, when a program needs a specific aspect ratio and [[subtle]] sets a gravity that violates this. Windows can tell the window manager about this kind of preferences via their size hints and [[subtle]] can honor those.\r\n\r\nThere are two possible ways:\r\n\r\n# Enable size hints globally with the _:resize_ option\r\n  <pre>{{hide}}<code class="ruby">set :resize, true</code></pre>\r\n# Enable this per program via [[tagging|tag]]\r\n  <pre>{{hide}}<code class="ruby">tag "name"\r\n  match  "name"\r\n  resize true\r\nend
112 1 Christoph Kappel
113 1 Christoph Kappel
h2. Why does program XYZ appears/turns as/to a gray canvas?
114 1 Christoph Kappel
Generally, this happens, when a program needs a specific aspect ratio and [[subtle]] sets a gravity that violates this. Windows can tell the window manager about this kind of preferences via their size hints and [[subtle]] can honor those.\r\n\r\nThere are two possible ways:\r\n\r\n# Enable size hints globally with the _&#58;resize_ option\r\n  <pre>{{hide}}<code class="ruby">set :resize, true</code></pre>\r\n# Enable this per program via [[tagging|tag]]\r\n  <pre>{{hide}}<code class="ruby">tag "name"\r\n  match  "name"\r\n  resize true\r\nend
115 1 Christoph Kappel
116 1 Christoph Kappel
h2. How do I run a java program?
117 1 Christoph Kappel
"Java":http://java.com *expects* a certain behaviour (_reparenting of client windows_) of a window manager which is not part of any standard, therefore some "Java":http://java.com programs just show a white canvas.\r\n\r\nIf this happens just try to start your program like this:\r\n\r\n<pre><code class="shell">AWT_TOOLKIT=MToolkit program</code></pre>\r\n\r\nThis changes the default tookit of "Java":http://java.com to MToolkit, which is known to work with non-reparenting windows managers like [[subtle]]. Depending on your "OpenJDK":http://openjdk.java.net version and your architecture this may either lead to a segmentation fault or your "OpenJDK":http://openjdk.java.net just has no support for *MToolkit*. In this case check if your distribution has applied a patch for this issue which allows something like this to change the default behaviour:\r\n\r\n<pre><code class="shell">_JAVA_AWT_WM_NONREPARENTING=1 program</code></pre>\r\n\r\nIn case both doesn't work there is a third option: The JDK internally uses a hardcoded list of window managers that are non-reparenting, the "suckless":http://suckless.org guys made the tool "wmname":http://tools.suckless.org/wmname to change the name of the wm and just lie to Java. \r\n\r\nGenerally this problem is really long lasting, see here: \r\n\r\nhttp://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6511454\r\nhttp://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508650\r\n\r\n
118 1 Christoph Kappel
119 1 Christoph Kappel
h2. How do I set a wallpaper in subtle?
120 1 Christoph Kappel
On start, [[subtle]] sets a background color (_if set_) to the root window and therefore *overwrites* any root pixmap set before. To avoid this, you just need to comment out the *&#58;background* line from your config.\r\n\r\n[[subtle]] itself has no and will never have either an autostart or way to set a wallpaper directly. Normally you just want to setup your X session and and not [[subtle]]. Your _~/.xinitrc_ is the right place for stuff like this.\r\n\r\nA background can easily set with a tool like "feh":http://linuxbrit.co.uk/software/feh/.
121 1 Christoph Kappel
122 1 Christoph Kappel
h2. How can I use subtle without numpad?
123 1 Christoph Kappel
Per default [[subtle]] uses the numpad, because it's easier to remind the different postions when you can see them. Generally this is just a suggestion, it's up to you to change the grabs to your needs - any keys will work. \r\n\r\nKeys that also have proven to work well are *q-w-e*, *a-s-d* and *y-x-c*:\r\n\r\n<pre>{{hide}}<code class="ruby">grab "W-q", [ :top_left,     :top_left66,     :top_left33     ]\r\ngrab "W-w", [ :top,          :top66,          :top33          ]\r\ngrab "W-e", [ :top_right,    :top_right66,    :top_right33    ]\r\ngrab "W-a", [ :left,         :left66,         :left33         ]\r\ngrab "W-s", [ :center,       :center66,       :center33       ]\r\ngrab "W-d", [ :right,        :right66,        :right33        ]\r\n\r\n# QWERTZ\r\ngrab "W-y", [ :bottom_left,  :bottom_left66,  :bottom_left33  ]\r\n\r\n# QWERTY\r\ngrab "W-z", [ :bottom_left,  :bottom_left66,  :bottom_left33  ]\r\n\r\ngrab "W-x", [ :bottom,       :bottom66,       :bottom33       ]\r\ngrab "W-c", [ :bottom_right, :bottom_right66, :bottom_right33 ]\r\n</code></pre>\r\n\r\n\r\nYou can find more about assigning keys [[Grabs|here]].
124 1 Christoph Kappel
125 1 Christoph Kappel
h2. How do I move program xyz to view abc?
126 1 Christoph Kappel
Placement in [[subtle]] is +strict+ and completely done via the [[tagging]]. There are many ways to change tags per runtime, common is to use either [[subtler]] or [[subtlext]].\r\n\r\nh2. subtler\r\n\r\n[[subtler]] can be used on the commandline:\r\n\r\n<pre>{{hide}}<code class="ruby">\r\nsubtler -ta tag         #< Add new tag 'tag'\r\nsubtler -cT client tag  #< Tag client 'client' with tag 'tag'\r\nsubtler -vT view tag    #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nh2. subtlext\r\n\r\n[[subtlext]] requires basic "ruby":http://ruby-lang.org knowledge:\r\n\r\n<pre>{{hide}}<code class="ruby">require "subtle/subtlext"\r\n\r\ntag = Subtlext::Tag.new("tag").save  #< Add new tag 'tag'\r\nSubtlext::Client["client"] + "tag"   #< Tag client 'client' with tag 'tag'\r\nSubtlext::View["view"] + "tag"       #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nh2. Snippets\r\n\r\nThe [[snippets]] wiki page includes examples how to "move":http://subforge.org/wiki/subtle/Snippets#Move-windows windows to another view.\r\n\r\nh2. Contrib\r\n\r\nh3. Vitag\r\n\r\n"subtle-contrib":http://subforge.org/projects/subtle-contrib/wiki contains "vitag":http://subforge.org/projects/subtle-contrib/wiki#Vitag, a script to change the [[tagging|tags]] of windows and views with an editor.\r\n\r\nh3. Launcher\r\n\r\nThe "launcher":http://subforge.org/projects/subtle-contrib/wiki#Launcher uses quite the opposite way, instead of moving a window to a certain screen it just provides a way to launch a window directly on the right view with the correct [[tagging|tags]].\r\n\r\nh2. Stick\r\n\r\nMost of the time, setting the window to *stick* does the trick too. Stick just displays the window on all views until the mode is disabled again. This can be done with [[grabs]] (default keys: W-s) or with [[subtler]]. (click on the window: subtler -cXS)\r\n\r\n
127 1 Christoph Kappel
128 1 Christoph Kappel
h2. How do I move program xyz to view abc?
129 1 Christoph Kappel
Placement in [[subtle]] is +strict+ and completely done via the [[tagging]]. There are many ways to change tags per runtime, common is to use either [[subtler]] or [[subtlext]].\r\n\r\nh2. subtler\r\n\r\n[[subtler]] can be used on the commandline:\r\n\r\n<pre>{{hide}}<code class="ruby">\r\nsubtler -ta tag         #< Add new tag 'tag'\r\nsubtler -cT client tag  #< Tag client 'client' with tag 'tag'\r\nsubtler -vT view tag    #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nh2. subtlext\r\n\r\n[[subtlext]] requires basic "ruby":http://ruby-lang.org knowledge:\r\n\r\n<pre>{{hide}}<code class="ruby">require "subtle/subtlext"\r\n\r\ntag = Subtlext::Tag.new("tag").save  #< Add new tag 'tag'\r\nSubtlext::Client["client"] + "tag"   #< Tag client 'client' with tag 'tag'\r\nSubtlext::View["view"] + "tag"       #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nh2. Snippets\r\n\r\nThe [[snippets]] wiki page includes examples how to "move":http://subforge.org/wiki/subtle/Snippets#Move-windows windows to another view.\r\n\r\nh2. Contrib\r\n\r\nh3. Vitag\r\n\r\n"subtle-contrib":http://subforge.org/projects/subtle-contrib/wiki contains "vitag":http://subforge.org/projects/subtle-contrib/wiki#Vitag, a script to change the [[tagging|tags]] of windows and views with an editor.\r\n\r\nh3. Launcher\r\n\r\nThe "launcher":http://subforge.org/projects/subtle-contrib/wiki#Launcher uses quite the opposite way, instead of moving a window to a certain screen it just provides a way to launch a window directly on the right view with the correct [[tagging|tags]].\r\n\r\nh2. Stick\r\n\r\nMost of the time, setting the window to *stick* does the trick too. Stick just displays the window on all views until the mode is disabled again. This can be done with [[grabs]] (default keys: *W-s*) or with [[subtler]]. (click on the window: @subtler -cXS@)\r\n\r\n
130 1 Christoph Kappel
131 1 Christoph Kappel
h2. How do I move program xyz to view abc?
132 1 Christoph Kappel
Placement in [[subtle]] is +strict+ and completely done via [[tagging]]. There are many ways to change [[tagging|tags]] per runtime, common is to use either [[subtler]] or [[subtlext]].\r\n\r\nh2. subtler\r\n\r\n[[subtler]] can be used on the commandline:\r\n\r\n<pre>{{hide}}<code class="ruby">\r\nsubtler -ta tag         #< Add new tag 'tag'\r\nsubtler -cT client tag  #< Tag client 'client' with tag 'tag'\r\nsubtler -vT view tag    #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nh2. subtlext\r\n\r\n[[subtlext]] requires basic "ruby":http://ruby-lang.org knowledge:\r\n\r\n<pre>{{hide}}<code class="ruby">require "subtle/subtlext"\r\n\r\ntag = Subtlext::Tag.new("tag").save  #< Add new tag 'tag'\r\nSubtlext::Client["client"] + "tag"   #< Tag client 'client' with tag 'tag'\r\nSubtlext::View["view"] + "tag"       #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nh2. Snippets\r\n\r\nThe [[snippets]] wiki page includes examples how to "move":http://subforge.org/wiki/subtle/Snippets#Move-windows windows to another view.\r\n\r\nh2. Contrib\r\n\r\nh3. Vitag\r\n\r\n"subtle-contrib":http://subforge.org/projects/subtle-contrib/wiki contains "vitag":http://subforge.org/projects/subtle-contrib/wiki#Vitag, a script to change the [[tagging|tags]] of windows and views with an editor.\r\n\r\nh3. Launcher\r\n\r\nThe "launcher":http://subforge.org/projects/subtle-contrib/wiki#Launcher uses quite the opposite way, instead of moving a window to a certain screen it just provides a way to launch a window directly on the right view with the correct [[tagging|tags]].\r\n\r\nh2. Stick\r\n\r\nMost of the time, setting the window to *stick* does the trick too. Stick just displays the window on all views until the mode is disabled again. This can be done with [[grabs]] (default keys: *W-s*) or with [[subtler]]. (click on the window: @subtler -cXS@)\r\n\r\n
133 1 Christoph Kappel
134 1 Christoph Kappel
h2. How do I run a java program?
135 1 Christoph Kappel
"Java":http://java.com *expects* a certain behaviour (_reparenting of client windows_) of a window manager which is not part of any standard, therefore some "Java":http://java.com programs just show a white canvas.\r\n\r\nIf this happens just try to start your program like this:\r\n\r\n<pre><code class="shell">AWT_TOOLKIT=MToolkit program</code></pre>\r\n\r\nThis changes the default tookit of "Java":http://java.com to _MToolkit_, which is known to work with non-reparenting windows managers like [[subtle]]. Depending on your "OpenJDK":http://openjdk.java.net version and your architecture this may either lead to a segmentation fault or your "OpenJDK":http://openjdk.java.net just has no support for *MToolkit*. In this case check if your distribution has applied a patch for this issue which allows something like this to change the default behaviour:\r\n\r\n<pre><code class="shell">_JAVA_AWT_WM_NONREPARENTING=1 program</code></pre>\r\n\r\nIn case both doesn't work there is a third option: The JDK internally uses a hardcoded list of window managers that are non-reparenting, the "suckless":http://suckless.org guys made the tool "wmname":http://tools.suckless.org/wmname to change the name of the wm and just lie to Java. \r\n\r\nGenerally this problem is really long lasting, see here: \r\n\r\nhttp://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6511454\r\nhttp://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508650\r\n\r\nbq. Note: Many problems only affect the "JRE":http://www.oracle.com/technetwork/java/javase/downloads/index.html and can be avoided by using the "OpenJDK":http://openjdk.java.net.\r\n\r\n
136 1 Christoph Kappel
137 1 Christoph Kappel
h2. Why does program XYZ appears/turns as/to a gray canvas?
138 1 Christoph Kappel
Generally, this happens, when a program needs a specific aspect ratio and [[subtle]] sets a gravity that violates this. Windows can tell the window manager about this kind of preferences via their size hints and [[subtle]] can honor those.\r\n\r\nThere are two possible ways:\r\n\r\n# Enable size hints globally with the _&#58;resize_ option\r\n  <pre>{{hide}}<code class="ruby">set :resize, true</code></pre>\r\n# Enable this per program via [[tagging|tag]]\r\n  <pre>{{hide}}<code class="ruby">tag "name"\r\n  match  "name"\r\n  resize true\r\nend\r\n\r\n.bq Note: This can happen with "java":http://java.com too, see "here":http://subforge.org/ezfaq/show/subtle?faq_id=14 for more information.
139 1 Christoph Kappel
140 1 Christoph Kappel
h2. How do I run a Java program?
141 1 Christoph Kappel
"Java":http://java.com *expects* a certain behaviour (_reparenting of client windows_) of a window manager which is not part of any standard, therefore some "Java":http://java.com programs just show a white canvas.\r\n\r\nIf this happens just try to start your program like this:\r\n\r\n<pre><code class="shell">AWT_TOOLKIT=MToolkit program</code></pre>\r\n\r\nThis changes the default tookit of "Java":http://java.com to _MToolkit_, which is known to work with non-reparenting windows managers like [[subtle]]. Depending on your "OpenJDK":http://openjdk.java.net version and your architecture this may either lead to a segmentation fault or your "OpenJDK":http://openjdk.java.net just has no support for *MToolkit*. In this case check if your distribution has applied a patch for this issue which allows something like this to change the default behaviour:\r\n\r\n<pre><code class="shell">_JAVA_AWT_WM_NONREPARENTING=1 program</code></pre>\r\n\r\nIn case both doesn't work there is a third option: The JDK internally uses a hardcoded list of window managers that are non-reparenting, the "suckless":http://suckless.org guys made the tool "wmname":http://tools.suckless.org/wmname to change the name of the wm and just lie to Java. \r\n\r\nGenerally this problem is really long lasting, see here: \r\n\r\nhttp://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6511454\r\nhttp://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508650\r\n\r\nbq. Note: Many problems only affect the "JRE":http://www.oracle.com/technetwork/java/javase/downloads/index.html and can be avoided by using the "OpenJDK":http://openjdk.java.net.\r\n\r\n
142 1 Christoph Kappel
143 1 Christoph Kappel
h2. Why does program XYZ appears/turns as/to a gray canvas?
144 1 Christoph Kappel
Generally, this happens, when a program needs a specific aspect ratio and [[subtle]] sets a gravity that violates this. Windows can tell the window manager about this kind of preferences via their size hints and [[subtle]] can honor those.\r\n\r\nThere are two possible ways:\r\n\r\n# Enable size hints globally with the _&#58;resize_ option\r\n  <pre>{{hide}}<code class="ruby">set :resize, true</code></pre>\r\n# Enable this per program via [[tagging|tag]]\r\n  <pre>{{hide}}<code class="ruby">tag "name"\r\n  match  "name"\r\n  resize true\r\nend</code></pre>\r\n\r\nbq. Note: This can happen with "java":http://java.com too, see "here":http://subforge.org/ezfaq/show/subtle?faq_id=14 for more information.
145 1 Christoph Kappel
146 1 Christoph Kappel
h2. Why does program XYZ appears/turns as/to a gray canvas?
147 1 Christoph Kappel
Generally, this happens, when a program needs a specific aspect ratio and [[subtle]] sets a gravity that violates this. Windows can tell the window manager about this kind of preferences via their size hints and [[subtle]] can honor those.\r\n\r\nThere are two possible ways:\r\n\r\n# Enable size hints globally with the _&#58;resize_ option\r\n  <pre>{{hide}}<code class="ruby">set :resize, true</code></pre>\r\n# Enable this per program via [[tagging|tag]]\r\n  <pre>{{hide}}<code class="ruby">tag "name"\r\n  match  "name"\r\n  resize true\r\nend</code></pre>\r\n\r\nbq. Note: This can happen with "Java":http://java.com too, see "here":http://subforge.org/ezfaq/show/subtle?faq_id=14 for more information.
148 1 Christoph Kappel
149 1 Christoph Kappel
h2. Is there any log file?
150 1 Christoph Kappel
Nope, there is *no* log file. In case you need one for e.g. reporting a bug +please+ read to the [[bugs|reporting a bug]] wiki page and check the paragraph about [[bugs#enable-logging|logging]].
151 1 Christoph Kappel
152 1 Christoph Kappel
h2. How do I run a Java program?
153 1 Christoph Kappel
"Java":http://java.com *expects* a certain behaviour (_reparenting of client windows_) of a window manager which is not part of any standard, therefore some "Java":http://java.com programs just show a white canvas.\r\n\r\nIf this happens just try to start your program like this:\r\n\r\n<pre><code class="shell">AWT_TOOLKIT=MToolkit program</code></pre>\r\n\r\nThis changes the default tookit of "Java":http://java.com to _MToolkit_, which is known to work with non-reparenting windows managers like [[subtle]]. Depending on your "OpenJDK":http://openjdk.java.net version and your architecture this may either lead to a segmentation fault or your "OpenJDK":http://openjdk.java.net just has no support for *MToolkit*. In this case check if your distribution has applied a patch for this issue which allows something like this to change the default behaviour:\r\n\r\n<pre><code class="shell">_JAVA_AWT_WM_NONREPARENTING=1 program</code></pre>\r\n\r\nIn case both doesn't work there is a third option: "Java":http://java.com seems to use an internally hardcoded list of window managers that are non-reparenting, the "suckless":http://suckless.org guys made a tool ("wmname":http://tools.suckless.org/wmname) to change the name of the wm. Since r2520 [[subtle]] can do that for you, just enable the *&#58;wmname* option.\r\n\r\nGenerally this problem is really long lasting, see here: \r\n\r\nhttp://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6511454\r\nhttp://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508650\r\n\r\nbq. Note: Many problems only affect the "JRE":http://www.oracle.com/technetwork/java/javase/downloads/index.html and can be avoided by using the "OpenJDK":http://openjdk.java.net.\r\n\r\n
154 1 Christoph Kappel
155 1 Christoph Kappel
h2. How do I run a Java program?
156 1 Christoph Kappel
"Java":http://java.com *expects* a certain behaviour (_reparenting of client windows_) of a window manager which is not part of any standard, therefore some "Java":http://java.com programs just show a white canvas.\r\n\r\nIf this happens just try to start your program like this:\r\n\r\n<pre><code class="shell">AWT_TOOLKIT=MToolkit program</code></pre>\r\n\r\nThis changes the default tookit of "Java":http://java.com to _MToolkit_, which is known to work with non-reparenting windows managers like [[subtle]]. Depending on your "OpenJDK":http://openjdk.java.net version and your architecture this may either lead to a segmentation fault or your "OpenJDK":http://openjdk.java.net just has no support for *MToolkit*. In this case check if your distribution has applied a patch for this issue which allows something like this to change the default behaviour:\r\n\r\n<pre><code class="shell">_JAVA_AWT_WM_NONREPARENTING=1 program</code></pre>\r\n\r\nIn case both doesn't work there is a third option: "Java":http://java.com seems to use an internally hardcoded list of window managers that are non-reparenting, the "suckless":http://suckless.org guys made a tool ("wmname":http://tools.suckless.org/wmname) to change the name of the wm.\r\n\r\nSince r2520 [[subtle]] can do that for you, just enable the *&#58;wmname* option.\r\n\r\nGenerally this problem is really long lasting, see here: \r\n\r\nhttp://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6511454\r\nhttp://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508650\r\n\r\nbq. Note: Many problems only affect the "JRE":http://www.oracle.com/technetwork/java/javase/downloads/index.html and can be avoided by using the "OpenJDK":http://openjdk.java.net.\r\n\r\n
157 1 Christoph Kappel
158 1 Christoph Kappel
h2. Where is the output window of flash in fullscreen?
159 1 Christoph Kappel
For flash, browsers seem to use window instance and class names that doesn't match the browser values. Therefore the windows will usually appear on the default view.\r\n\r\nFollowing names are currently in use:\r\n\r\n|_. Browser |_. WM_NAME            |_. WM_CLASS                                 |\r\n| Firefox   | <unknown>            | "<unknown>", "<unknown>"                   |\r\n| Chromium  | exe                  | "exe", "Exe"                               |\r\n| Opera     | "operapluginwrapper" | "operapluginwrapper", "Operapluginwrapper" |\r\n\r\nThe easiest way to avoid that is to add a [[tagging|tag]] that makes these windows sticky:\r\n\r\n<pre>{{hide}}<code class="ruby">tag "flash" do\r\n  match "<unknown>|exe|operapluginwrapper"\r\n  stick true\r\nend</code></pre>
160 1 Christoph Kappel
161 1 Christoph Kappel
h2. Where is the output window of flash in fullscreen?
162 1 Christoph Kappel
For flash, browsers seem to use window instance and class names that doesn't match the browser values. Therefore the windows will usually appear on the default view.\r\n\r\nFollowing names are currently in use:\r\n\r\n|_. Browser       |_. Arch   |_. WM_NAME            |_. WM_CLASS                                 |\r\n| Firefox         | x86      | <unknown>            | "<unknown>", "<unknown>"                   |\r\n| Chromium        | x86      | exe                  | "exe", "Exe"                               |\r\n| Opera           | x86      | "operapluginwrapper" | "operapluginwrapper", "Operapluginwrapper" |\r\n| nspluginwrapper | x86_64   | "npviewer.bin"       | "Npviewer.bin"                             |\r\n\r\nThe easiest way to avoid that is to add a [[tagging|tag]] that makes these windows sticky:\r\n\r\n<pre>{{hide}}<code class="ruby">tag "flash" do\r\n  match "<unknown>|exe|operapluginwrapper"\r\n  stick true\r\nend</code></pre>
163 1 Christoph Kappel
164 1 Christoph Kappel
h2. Where is the output window of flash in fullscreen?
165 1 Christoph Kappel
For flash, browsers seem to use window instance and class names that doesn't match the browser values. Therefore the windows will usually appear on the default view.\r\n\r\nFollowing names are currently in use:\r\n\r\n|_. Browser       |_. Arch   |_. WM_NAME            |_. WM_CLASS                                 |\r\n| Firefox         | x86      | <unknown>            | "<unknown>", "<unknown>"                   |\r\n| Chromium        | x86      | exe                  | "exe", "Exe"                               |\r\n| Opera           | x86      | "operapluginwrapper" | "operapluginwrapper", "Operapluginwrapper" |\r\n| nspluginwrapper | x86_64   | "npviewer.bin"       | "Npviewer.bin"                             |\r\n\r\nThe easiest way to avoid that is to add a [[tagging|tag]] that makes these windows sticky:\r\n\r\n<pre>{{hide}}<code class="ruby">tag "flash" do\r\n  match "<unknown>|exe|operapluginwrapper|npviewer.bin"\r\n  stick true\r\nend</code></pre>
166 1 Christoph Kappel
167 1 Christoph Kappel
h2. What is required for the volume sublet?
168 1 Christoph Kappel
The volume [[sublets|sublet]] uses @/dev/mixer@ to set/get the volume levels, which is an older interface introduced with "OSS":http://www.opensound.com/ and still available via "ALSA OSS emulation":http://www.alsa-project.org/. Apparently, newer kernels refuse to autoload that module anymore and you need to load it manually or via any init file.\r\n\r\n{{info(Please check to the docs of your distribution how to do it.)}}\r\n\r\n<pre><code>modprobe snd_mixer_oss</code></pre>\r\n\r\n{{warn(Following explanation is technical!)}}\r\n\r\nThe [[sublets|sublet]] needs a way to access a mixer without any asynchronous callbacks. The reason for that is that [[subtle]] is single-threaded and can't use a dedicated thread to wait for the reply, but the APIs of "ALSA":http://www.alsa-project.org/ and "PulseAudio":http://pulseaudio.org are both designed to be asynchronous. Normally event drivven is fine but it is troublesome when you can't use their mainloop.\r\n\r\nSince there is no way to add e.g. a control socket to the event main loop of [[subtle]], the @/dev/mixer@ approach is the only way and works for all sound systems.
169 1 Christoph Kappel
170 1 Christoph Kappel
h2. How do I move program xyz to view abc?
171 1 Christoph Kappel
Placement in [[subtle]] is +strict+ and completely done via [[tagging]]. There are many ways to change [[tagging|tags]] per runtime, common is to use either [[subtler]] or [[subtlext]].\r\n\r\nh2. subtler\r\n\r\n[[subtler]] can be used on the commandline:\r\n\r\n<pre>{{hide}}<code class="ruby">\r\nsubtler -ta tag         #< Add new tag 'tag'\r\nsubtler -cT client tag  #< Tag client 'client' with tag 'tag'\r\nsubtler -vT view tag    #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nh2. subtlext\r\n\r\n[[subtlext]] requires basic "ruby":http://ruby-lang.org knowledge:\r\n\r\n<pre>{{hide}}<code class="ruby">require "subtle/subtlext"\r\n\r\ntag = Subtlext::Tag.new("tag").save  #< Add new tag 'tag'\r\nSubtlext::Client["client"] + "tag"   #< Tag client 'client' with tag 'tag'\r\nSubtlext::View["view"] + "tag"       #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nh2. Snippets\r\n\r\nThe [[snippets]] wiki page includes examples how to [[snippets#Move-windows|move to another view]].\r\n\r\nh2. Contrib\r\n\r\nh3. Vitag\r\n\r\n"subtle-contrib":http://subforge.org/projects/subtle-contrib/wiki contains [[subtle-contrib:vitag|vitag]] a script to change the [[tagging|tags]] of windows and views with an editor.\r\n\r\nh3. Launcher\r\n\r\nThe "launcher":http://subforge.org/projects/subtle-contrib/wiki#Launcher uses quite the opposite way, instead of moving a window to a certain screen it just provides a way to launch a window directly on the right view with the correct [[tagging|tags]].\r\n\r\nh2. Stick\r\n\r\nMost of the time, setting the window to *stick* does the trick too. Stick just displays the window on all views until the mode is disabled again. This can be done with [[grabs]] (default keys: *W-s*) or with [[subtler]]. (click on the window: @subtler -cXS@)\r\n\r\n
172 1 Christoph Kappel
173 1 Christoph Kappel
h2. Where does sur store sublets and icons?
174 1 Christoph Kappel
[[sur]] follows the "XDG Base Directory specifications":http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html to store data, which includes some base path for specific data types.\r\n\r\nFollowing paths are used:\r\n\r\n|_. Type  |_. XDG path                    |_. Default path                |\r\n| Sublets | @$XDG_DATA_HOME/subtle/sublets@ | @~/.local/share/subtle/sublets@ |\r\n| Icons   | @$XDG_DATA_HOME/subtle(icons@   | @~/.local/share/subtle/icons@   |
175 1 Christoph Kappel
176 1 Christoph Kappel
h2. Why does program XYZ appears/turns as/to a gray canvas?
177 1 Christoph Kappel
Generally, this happens, when a program needs a specific aspect ratio and [[subtle]] sets a gravity that violates this. Windows can tell the window manager about this kind of preferences via their size hints and [[subtle]] can honor those.\r\n\r\nThere are two possible ways:\r\n\r\n# Enable size hints globally with the _&#58;resize_ option\r\n  <pre>{{hide}}<code class="ruby">set :resize, true</code></pre>\r\n# Enable this per program via [[tagging|tag]]\r\n  <pre>{{hide}}<code class="ruby">tag "name" do\r\n  match  "name"\r\n  resize true\r\nend</code></pre>\r\n\r\nbq. Note: This can happen with "Java":http://java.com too, see "here":http://subforge.org/ezfaq/show/subtle?faq_id=14 for more information.
178 1 Christoph Kappel
179 1 Christoph Kappel
h2. How can I use subtle without numpad?
180 1 Christoph Kappel
Per default [[subtle]] uses the numpad, because it's easier to remind the different postions when you can see them. Generally this is just a suggestion, it's up to you to change the grabs to your needs - any keys will work. \r\n\r\nKeys that also have proven to work well are *q-w-e*, *a-s-d* and *y-x-c*:\r\n\r\n<pre>{{hide}}<code class="ruby">grab "W-q", [ :top_left,     :top_left66,     :top_left33     ]\r\ngrab "W-w", [ :top,          :top66,          :top33          ]\r\ngrab "W-e", [ :top_right,    :top_right66,    :top_right33    ]\r\ngrab "W-a", [ :left,         :left66,         :left33         ]\r\ngrab "W-s", [ :center,       :center66,       :center33       ]\r\ngrab "W-d", [ :right,        :right66,        :right33        ]\r\n\r\n# QWERTZ\r\ngrab "W-y", [ :bottom_left,  :bottom_left66,  :bottom_left33  ]\r\n\r\n# QWERTY\r\ngrab "W-z", [ :bottom_left,  :bottom_left66,  :bottom_left33  ]\r\n\r\ngrab "W-x", [ :bottom,       :bottom66,       :bottom33       ]\r\ngrab "W-c", [ :bottom_right, :bottom_right66, :bottom_right33 ]\r\n</code></pre>\r\n\r\n\r\nYou can find more about assigning keys [[Grabs|here]].
181 1 Christoph Kappel
182 1 Christoph Kappel
h2. What is the difference between ViewSwitch and ViewJump?
183 1 Christoph Kappel
Boths keys change the [[view]] of the current active [[screens|screen]], but the behavior how they do that depends on if the system consists either of a single [[screens|screen]] or more.\r\n\r\nh2. Single screen\r\n\r\nHere both [[grabs]] do +exactly+ the same.\r\n\r\nh2. Multi screen\r\n\r\nHere the behavior depends of the select [[views|view]] is visible on another screen or not.\r\n\r\n* *ViewSwitch* either swaps the current [[views|view]] with the selected if it is visible on another [[screens|screen]] or just sets the selected [[views|view]] on current [[screens|screen]].\r\n* *ViewJump* either focus the selected [[views|view]] if it is visible on another screen or just sets the select view on current [[screens|screen]].
184 1 Christoph Kappel
185 1 Christoph Kappel
h2. What is the difference between ViewSwitch and ViewJump?
186 1 Christoph Kappel
Boths keys change the [[view]] of the current active [[screens|screen]], but the behavior how they do that depends on if the system consists either of a single [[screens|screen]] or more.\r\n\r\nh2. Single screen\r\n\r\nHere both [[grabs]] do +exactly+ the same.\r\n\r\nh2. Multi screen\r\n\r\nHere the behavior depends on if the selected [[views|view]] is visible on another [[screens|screen]] or not.\r\n\r\n* *ViewSwitch* either swaps the current [[views|view]] with the selected if it is visible on another [[screens|screen]] or just sets the selected [[views|view]] on current [[screens|screen]].\r\n* *ViewJump* either focus the selected [[views|view]] if it is visible on another [[screens|screen]] or just sets the select [[views|view]] on current [[screens|screen]].
187 1 Christoph Kappel
188 1 Christoph Kappel
h2. Why does subtle cause to many wakeups?
189 1 Christoph Kappel
The wakeups are caused by a "Ruby":http://ruby-lang.org internal polling thread that runs every 10ms to schedule/handle other threads and signals. There is currently no way to avoid that in "YARV":http://www.atdot.net/yarv/, although the problem is well known.\r\n\r\nhttp://www.ruby-forum.com/topic/200147
190 1 Christoph Kappel
191 1 Christoph Kappel
h2. How do I tag gimp?
192 1 Christoph Kappel
[[Tagging]] "GIMP":http://gimp.org can be nasty, because the current version (2.6) uses inconsistent window names and roles. The window roles are fixed in the current development snapshot and will hopefully find their way into the 2.8 release.\r\n\r\nhttps://bugzilla.gnome.org/show_bug.cgi?id=645456
193 1 Christoph Kappel
194 1 Christoph Kappel
h2. How do I move a program to another view?
195 1 Christoph Kappel
Placement in [[subtle]] is +strict+ and completely done via [[tagging]]. There are many ways to change [[tagging|tags]] per runtime, common is to use either [[subtler]] or [[subtlext]].\r\n\r\nh2. subtler\r\n\r\n[[subtler]] can be used on the commandline:\r\n\r\n<pre>{{hide}}<code class="ruby">\r\nsubtler -ta tag         #< Add new tag 'tag'\r\nsubtler -cT client tag  #< Tag client 'client' with tag 'tag'\r\nsubtler -vT view tag    #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nh2. subtlext\r\n\r\n[[subtlext]] requires basic "ruby":http://ruby-lang.org knowledge:\r\n\r\n<pre>{{hide}}<code class="ruby">require "subtle/subtlext"\r\n\r\ntag = Subtlext::Tag.new("tag").save  #< Add new tag 'tag'\r\nSubtlext::Client["client"] + "tag"   #< Tag client 'client' with tag 'tag'\r\nSubtlext::View["view"] + "tag"       #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nh2. Snippets\r\n\r\nThe [[snippets]] wiki page includes examples how to [[snippets#Move-windows|move to another view]].\r\n\r\nh2. Contrib\r\n\r\nh3. Vitag\r\n\r\n"subtle-contrib":http://subforge.org/projects/subtle-contrib/wiki contains [[subtle-contrib:vitag|vitag]] a script to change the [[tagging|tags]] of windows and views with an editor.\r\n\r\nh3. Launcher\r\n\r\nThe "launcher":http://subforge.org/projects/subtle-contrib/wiki#Launcher uses quite the opposite way, instead of moving a window to a certain screen it just provides a way to launch a window directly on the right view with the correct [[tagging|tags]].\r\n\r\nh2. Stick\r\n\r\nMost of the time, setting the window to *stick* does the trick too. Stick just displays the window on all views until the mode is disabled again. This can be done with [[grabs]] (default keys: *W-s*) or with [[subtler]]. (click on the window: @subtler -cXS@)\r\n\r\n
196 1 Christoph Kappel
197 1 Christoph Kappel
h2. How do I start a program?
198 1 Christoph Kappel
There are several way how to start a certain programm, here are the most common:\r\n\r\n* Start your program via your $HOME/.xinitrc:\r\n\r\n<pre><code class="ruby">\r\nsubtle &\r\nPID=$!\r\nsleep 2\r\nurxvt\r\nwait $PID\r\n</code></pre>\r\n\r\n* Start your program via [[grabs]]:\r\n\r\n<pre><code class="ruby">\r\n"A-x" => "urxvt"\r\n</code></pre>\r\n\r\nThere are many launchers available like "dmenu":http://tools.suckless.org/dmenu and there is even a launcher especially designed for [[subtle]], you can find it in [[subtle-contrib:Launcher|here]].\r\n
199 1 Christoph Kappel
200 1 Christoph Kappel
h2. How do I tag console based programs?
201 1 Christoph Kappel
When console based programs like "irssi":http://irssi.org are started with a terminal like @urxvt -e irssi@, they usually just change the *WM_NAME* of the terminal and per default, [[subtle]] just uses both of the {{color(#ff0000, WM_CLASS)}} values for tagging.\r\n\r\nThe problem about that is, that the [[tagging]] is normally done before the terminal really starts the desired app. To avoid that all better known terminals support the *-name* argument which changes the instance value (first string) of the *WM_CLASS*: @urxvt -name irssi -e irssi@\r\n\r\nAnother problem is that terminals retain their class value (second string) of the {{color(#ff0000, WM_CLASS)}} and may match other [[tagging|tags]].\r\n\r\nThe common solution to bypass is this to use the :instance matcher, which just matches when for the specific instance value. \r\n\r\nFollowing table shows the *WM_NAME* and *WM_CLASS* output of "xprop":http://www.xfree86.org/current/xprop.1.html of the various combinations:\r\n\r\n|_. Command                  |_. WM_NAME    |_. WM_CLASS   |\r\n| urxvt                      | urxvt        | urxvt, URxvt |\r\n| urxvt -e irssi             | irssi        | urxvt, URxvt |\r\n| urxvt -name irssi          | urxvt        | irssi, URxvt |\r\n| urxvt -name irssi -e irssi | irssi        | irssi, URxvt |\r\n\r\nSo the easiest way to reliable match this client is a [[lagging|tag]] like this:\r\n\r\n<pre>code class="ruby">tag "irssi" do\r\n  match :instance => "irssi"\r\nend</code></pre>\r\n\r\n
202 1 Christoph Kappel
203 1 Christoph Kappel
h2. How do I tag console based programs?
204 1 Christoph Kappel
When console based programs like "irssi":http://irssi.org are started with a terminal like @urxvt -e irssi@, they usually just change the *WM_NAME* of the terminal and per default, [[subtle]] just uses both of the *WM_CLASS* values for tagging.\r\n\r\nThe problem about that is, that the [[tagging]] is normally done before the terminal really starts the desired app. To avoid that all better known terminals support the *-name* argument which changes the instance value (first string) of the *WM_CLASS*: @urxvt -name irssi -e irssi@\r\n\r\nAnother problem is that terminals retain their class value (second string) of the *WM_CLASS* and may match other [[tagging|tags]] like:\r\n\r\n<pre><code class="ruby">tag "terms" do\r\n  match "urxvt"\r\nend</code></pre>\r\n\r\nThe common solution to bypass is this to use the :instance matcher, which just matches when for the specific instance value. \r\n\r\nFollowing table shows the *WM_NAME* and *WM_CLASS* output of "xprop":http://www.xfree86.org/current/xprop.1.html of the various combinations:\r\n\r\n|_. Command                  |_. WM_NAME    |_. WM_CLASS   |\r\n| urxvt                      | urxvt        | urxvt, URxvt |\r\n| urxvt -e irssi             | irssi        | urxvt, URxvt |\r\n| urxvt -name irssi          | urxvt        | irssi, URxvt |\r\n| urxvt -name irssi -e irssi | irssi        | irssi, URxvt |\r\n\r\nSo the easiest way to reliable match this client is a [[lagging|tag]] like this:\r\n\r\n<pre><code class="ruby">tag "irssi" do\r\n  match :instance => "irssi"\r\nend</code></pre>\r\n\r\n
205 1 Christoph Kappel
206 1 Christoph Kappel
h2. How do I tag console based programs?
207 1 Christoph Kappel
When console based programs like "irssi":http://irssi.org are started with a terminal like @urxvt -e irssi@, they usually just change the *WM_NAME* of the terminal and per default, [[subtle]] just uses both of the *WM_CLASS* values for tagging.\r\n\r\nThe problem about that is, that the [[tagging]] is normally done before the terminal really starts the desired app. To avoid that all better known terminals support the *-name* argument which changes the instance value (first string) of the *WM_CLASS*: @urxvt -name irssi -e irssi@\r\n\r\nAnother problem is that terminals retain their class value (second string) of the *WM_CLASS* and may match other [[tagging|tags]] like:\r\n\r\n<pre><code class="ruby">tag "terms" do\r\n  match "urxvt"\r\nend</code></pre>\r\n\r\nThe common solution to bypass is this to use the :instance matcher, which just matches when for the specific instance value. So the easiest way to reliable match this client is a [[tagging|tag]] like this:\r\n\r\n<pre><code class="ruby">tag "irssi" do\r\n  match :instance => "irssi"\r\nend</code></pre>\r\n\r\nFollowing table shows the *WM_NAME* and *WM_CLASS* output of "xprop":http://www.xfree86.org/current/xprop.1.html of the various combinations:\r\n\r\n|_. Command                  |_. WM_NAME    |_. WM_CLASS   |\r\n| urxvt                      | urxvt        | urxvt, URxvt |\r\n| urxvt -e irssi             | irssi        | urxvt, URxvt |\r\n| urxvt -name irssi          | urxvt        | irssi, URxvt |\r\n| urxvt -name irssi -e irssi | irssi        | irssi, URxvt |\r\n\r\n\r\n\r\n
208 1 Christoph Kappel
209 1 Christoph Kappel
h2. How do I tag console based programs?
210 1 Christoph Kappel
When console based programs like "irssi":http://irssi.org are started with a terminal like @urxvt -e irssi@, they usually just change the *WM_NAME* of the terminal and per default, [[subtle]] uses both of the *WM_CLASS* values for tagging.\r\n\r\nThe problem about that is, that the [[tagging]] is normally done before the terminal really starts the desired app. To avoid that all better known terminals support the *-name* argument which changes the instance value (first string) of the *WM_CLASS*: @urxvt -name irssi -e irssi@\r\n\r\nAnother problem is that terminals retain their class value (second string) of the *WM_CLASS* and may match other [[tagging|tags]] like:\r\n\r\n<pre><code class="ruby">tag "terms" do\r\n  match "urxvt"\r\nend</code></pre>\r\n\r\nThe common solution to bypass is this to use the :instance matcher, which just matches when for the specific instance value. So the easiest way to reliable match this client is a [[tagging|tag]] like this:\r\n\r\n<pre><code class="ruby">tag "irssi" do\r\n  match :instance => "irssi"\r\nend</code></pre>\r\n\r\nFollowing table shows the *WM_NAME* and *WM_CLASS* output of "xprop":http://www.xfree86.org/current/xprop.1.html of the various combinations:\r\n\r\n|_. Command                  |_. WM_NAME    |_. WM_CLASS   |\r\n| urxvt                      | urxvt        | urxvt, URxvt |\r\n| urxvt -e irssi             | irssi        | urxvt, URxvt |\r\n| urxvt -name irssi          | urxvt        | irssi, URxvt |\r\n| urxvt -name irssi -e irssi | irssi        | irssi, URxvt |\r\n\r\n\r\n\r\n
211 1 Christoph Kappel
212 1 Christoph Kappel
h2. Why did the volume sublet stop working after kernel update?
213 1 Christoph Kappel
The volume [[sublets|sublet]] uses @/dev/mixer@ to set/get the volume levels, which is an older interface introduced with "OSS":http://www.opensound.com/ and still available via "ALSA OSS emulation":http://www.alsa-project.org/. Apparently, newer kernels refuse to autoload that module anymore and you need to load it manually or via any init file.\r\n\r\n{{info(Please check to the docs of your distribution how to do it.)}}\r\n\r\n{{warn(Following explanation is technical!)}}\r\n\r\nThe [[sublets|sublet]] needs a way to access a mixer without any asynchronous callbacks. The reason for that is that [[subtle]] is single-threaded and can't use a dedicated thread to wait for the reply, but the APIs of "ALSA":http://www.alsa-project.org/ and "PulseAudio":http://pulseaudio.org are both designed to be asynchronous. Normally event drivven is fine but it is troublesome when you can't use their mainloop.\r\n\r\nSince there is no way to add e.g. a control socket to the event main loop of [[subtle]], the @/dev/mixer@ approach is the only way and works for all sound systems.
214 1 Christoph Kappel
215 1 Christoph Kappel
h2. Why did the volume sublet stop working after kernel update?
216 1 Christoph Kappel
The volume [[sublets|sublet]] uses @/dev/mixer@ to set/get the volume levels, which is an older interface introduced with "OSS":http://www.opensound.com/ and still available via "ALSA OSS emulation":http://www.alsa-project.org/. Apparently, newer kernels refuse to autoload that module anymore and you need to load it manually or via any init file.\r\n\r\n{{info(Please check to the docs of your distribution how to do it.)}}\r\n\r\n<pre><code>modprobe snd_mixer_oss</code></pre>\r\n\r\n{{warn(Following explanation is technical!)}}\r\n\r\nThe [[sublets|sublet]] needs a way to access a mixer without any asynchronous callbacks. The reason for that is that [[subtle]] is single-threaded and can't use a dedicated thread to wait for the reply, but the APIs of "ALSA":http://www.alsa-project.org/ and "PulseAudio":http://pulseaudio.org are both designed to be asynchronous. Normally event drivven is fine but it is troublesome when you can't use their mainloop.\r\n\r\nSince there is no way to add e.g. a control socket to the event main loop of [[subtle]], the @/dev/mixer@ approach is the only way and works for all sound systems.
217 1 Christoph Kappel
218 1 Christoph Kappel
h2. Is subtle a reparenting window manager?
219 1 Christoph Kappel
*Nope*, [[subtle]] doesn't reparent windows and there is in fact *no* reason to do that. The layout in [[subtle]] is a really loose set, the only relation between a [[views|view]] and a [[client]] is [[tagging]] and this is checked on every [[views|view]] update.\r\n\r\nReparenting windows would require following additional steps, when a window is visible on a certain [[views|view]]:\r\n\r\n# Resize the [[views|view]] toplevel window to the size of the current [[screen]]\r\n# Reparent the [[client]] window to the toplevel window\r\n# Handle (ignore here) the generated expose and crossing events\r\n\r\nProbably sounds like not much overhead, but keep in mind this is just required because the developer of "Java":http://www.java.com/ and "Qt":http://qt.nokia.com/products/ cannot understand following line from the "ICCCM":http://tronche.com/gui/x/icccm/sec-4.html#s-4.2.1:\r\n\r\nbq. Clients must be aware that some window managers will reparent their top-level windows so that a window that was created as a child of the root will be displayed as a child of some window belonging to the window manager
220 1 Christoph Kappel
221 1 Christoph Kappel
h2. How do I tag console based programs?
222 1 Christoph Kappel
When console based programs like "irssi":http://irssi.org are started with a terminal like @urxvt -e irssi@, they usually just change the *WM_NAME* of the terminal and per default, [[subtle]] uses both of the *WM_CLASS* values for tagging.\r\n\r\nThe problem about that is, that the [[tagging]] is normally done before the terminal really starts the desired app. To avoid that all better known terminals support the *-name* argument which changes the instance value (first string) of the *WM_CLASS*: @urxvt -name irssi -e irssi@\r\n\r\nAnother problem is that terminals retain their class value (second string) of the *WM_CLASS* and may match other [[tagging|tags]] like:\r\n\r\n<pre><code class="ruby">tag "terms" do\r\n  match "urxvt"\r\nend</code></pre>\r\n\r\nThe common solution to bypass is this to use the :instance matcher, which just matches when for the specific instance value. So the easiest way to reliable match this client is a [[tagging|tag]] like this:\r\n\r\n<pre><code class="ruby">tag "irssi" do\r\n  match :instance => "irssi"\r\nend</code></pre>\r\n\r\nFollowing table shows the *WM_NAME* and *WM_CLASS* output of "xprop":http://www.xfree86.org/current/xprop.1.html of the various combinations:\r\n\r\n|_. Command                  |_. WM_NAME    |_. WM_CLASS   |\r\n| urxvt                      | urxvt        | urxvt, URxvt |\r\n| urxvt -e irssi             | irssi        | urxvt, URxvt |\r\n| urxvt -name irssi          | urxvt        | irssi, URxvt |\r\n| urxvt -name irssi -e irssi | irssi        | irssi, URxvt |\r\n\r\nPlease have a look at the [[Tagging|tagging wiki page]] for more information.\r\n\r\n\r\n
223 1 Christoph Kappel
224 1 Christoph Kappel
h2. Why does subtle cause to many wakeups?
225 1 Christoph Kappel
The wakeups are caused by a "Ruby":http://ruby-lang.org internal polling thread that runs every 10ms to schedule/handle other threads and signals. There is currently no way to avoid that in "YARV":http://www.atdot.net/yarv/, although the problem is well known.\r\n\r\nhttp://www.ruby-forum.com/topic/200147\r\n\r\nThere is finally some progress regarding this: http://www.ruby-forum.com/topic/549998
226 1 Christoph Kappel
227 1 Christoph Kappel
h2. Why don't my grabs work with xyz keyboard layout?
228 1 Christoph Kappel
Actually, I have no idea why setting the keyboard layout in your @xorg.conf@ isn't suffucient, but apparently you need to call *setxkbmap* in one of your startup files to set the keymap. My suggestion is to use the @~/.xinitrc@, because it is perfectly suited to setup Xorg and usually read.\r\n\r\nJust add something like this to your @~/.xinitrc@ *before* you start [[subtle]]: \r\n\r\n<pre><code>setxkbmap -layout 'de(nodeadkeys)'</code></pre>
229 1 Christoph Kappel
230 1 Christoph Kappel
h2. Where is the output window of flash in fullscreen?
231 1 Christoph Kappel
For flash, browsers seem to use window instance and class names that doesn't match the browser values. Therefore the windows will usually appear on the default view.\r\n\r\nFollowing names are currently in use:\r\n\r\n|_. Browser       |_. Arch   |_. WM_NAME            |_. WM_CLASS                                 |\r\n| Firefox <7.0.1  | all      | <unknown>            | "<unknown>", "<unknown>"                   |\r\n| Firefox >=7.0.1 | all      | plugin-container     | "plugin-container", "Plugin-container"     |\r\n| Chromium        | all      | exe                  | "exe", "Exe"                               |\r\n| Opera           | x86      | "operapluginwrapper" | "operapluginwrapper", "Operapluginwrapper" |\r\n| nspluginwrapper | x86_64   | "npviewer.bin"       | "Npviewer.bin"                             |\r\n\r\nThe easiest way to avoid that is to add a [[tagging|tag]] that makes these windows sticky:\r\n\r\n<pre>{{hide}}<code class="ruby">tag "flash" do\r\n  match "<unknown>|plugin-container|exe|operapluginwrapper|npviewer.bin"\r\n  stick true\r\nend</code></pre>
232 1 Christoph Kappel
233 1 Christoph Kappel
h2. How do I (auto)start applications?
234 1 Christoph Kappel
There are several way how to start a certain programm, here are the most common:\r\n\r\n* Start your program via your $HOME/.xinitrc:\r\n\r\n<pre><code class="ruby">\r\nsubtle &\r\nPID=$!\r\nsleep 2\r\nurxvt\r\nwait $PID\r\n</code></pre>\r\n\r\n* Start your program via [[grabs]]:\r\n\r\n<pre><code class="ruby">\r\n"A-x" => "urxvt"\r\n</code></pre>\r\n\r\nThere are many launchers available like "dmenu":http://tools.suckless.org/dmenu and there is even a launcher especially designed for [[subtle]], you can find it in [[subtle-contrib:Launcher|here]].\r\n
235 1 Christoph Kappel
236 1 Christoph Kappel
h2. How do I (auto)start programs?
237 1 Christoph Kappel
There are several way how to start a certain programm, here are the most common:\r\n\r\n* Start your program via your $HOME/.xinitrc:\r\n\r\n<pre><code class="ruby">\r\nsubtle &\r\nPID=$!\r\nsleep 2\r\nurxvt\r\nwait $PID\r\n</code></pre>\r\n\r\n* Start your program via [[grabs]]:\r\n\r\n<pre><code class="ruby">\r\n"A-x" => "urxvt"\r\n</code></pre>\r\n\r\nThere are many launchers available like "dmenu":http://tools.suckless.org/dmenu and there is even a launcher especially designed for [[subtle]], you can find it in [[subtle-contrib:Launcher|here]].\r\n
238 1 Christoph Kappel
239 1 Christoph Kappel
h2. How to match a GLFW window
240 1 Christoph Kappel
GLFW set the windows name after the window get created, so you can't match a particular GLFW window by his name.\r\n\r\nto match any GLFW window :\r\n\r\n<pre>\r\ntag "glfw" do\r\n\tmatch name: "GLFW.*"\r\n\t# Your code....\r\nend\r\n</pre>
241 1 Christoph Kappel
242 1 Christoph Kappel
h2. How to match a GLFW window
243 1 Christoph Kappel
GLFW set the name of the window after the window get created, so you can't match a particular window by his name.\r\n\r\nto match any GLFW window :\r\n\r\n<pre>\r\ntag "glfw" do\r\n\tmatch name: "GLFW.*"\r\n\t# your code\r\nend\r\n</pre>
244 1 Christoph Kappel
245 1 Christoph Kappel
h2. How to match a GLFW window
246 1 Christoph Kappel
GLFW set the name of the window after the window get created, so you can't match a particular window by his name.\r\n\r\nto match any GLFW window :\r\n\r\n<pre>\r\ntag "glfw" do\r\n\tmatch name: "GLFW.*"\r\n\t# your code\r\nend\r\n</pre>
247 1 Christoph Kappel
248 1 Christoph Kappel
h2. Why does subtle cause to many wakeups?
249 1 Christoph Kappel
The wakeups are caused by a "Ruby":http://ruby-lang.org internal polling thread that runs every 10ms to schedule/handle other threads and signals. There is currently no way to avoid that in "YARV":http://www.atdot.net/yarv/, although the problem is well known.\r\n\r\nhttp://www.ruby-forum.com/topic/200147\r\n\r\nThere is finally some progress regarding this: http://www.ruby-forum.com/topic/549998
250 1 Christoph Kappel
251 1 Christoph Kappel
h2. Is there any log file?
252 1 Christoph Kappel
Nope, there is *no* log file. In case you need one for e.g. reporting a bug +please+ read to the [[bugs|reporting a bug]] wiki page and check the paragraph about [[bugs#enable-logging|logging]].
253 1 Christoph Kappel
254 1 Christoph Kappel
h2. How do I (auto)start programs?
255 1 Christoph Kappel
There are several way how to start a certain programm, here are the most common:\r\n\r\n* Start your program via your $HOME/.xinitrc:\r\n\r\n<pre><code class="ruby">\r\nsubtle &\r\nPID=$!\r\nsleep 2\r\nurxvt\r\nwait $PID\r\n</code></pre>\r\n\r\n* Start your program via [[grabs]]:\r\n\r\n<pre><code class="ruby">\r\n"A-x" => "urxvt"\r\n</code></pre>\r\n\r\nThere are many launchers available like "dmenu":http://tools.suckless.org/dmenu and there is even a launcher especially designed for [[subtle]], you can find it in [[subtle-contrib:Launcher|here]].\r\n
256 1 Christoph Kappel
257 1 Christoph Kappel
h2. How do I tag gimp?
258 1 Christoph Kappel
[[Tagging]] "GIMP":http://gimp.org can be nasty, because the current version (2.6) uses inconsistent window names and roles. The window roles are fixed in the current development snapshot and will hopefully find their way into the 2.8 release.\r\n\r\nhttps://bugzilla.gnome.org/show_bug.cgi?id=645456
259 1 Christoph Kappel
260 1 Christoph Kappel
h2. How do I set a wallpaper in subtle?
261 1 Christoph Kappel
On start, [[subtle]] sets a background color (_if set_) to the root window and therefore *overwrites* any root pixmap set before. To avoid this, you just need to comment out the *&#58;background* line from your config.\r\n\r\n[[subtle]] itself has no and will never have either an autostart or way to set a wallpaper directly. Normally you just want to setup your X session and and not [[subtle]]. Your _~/.xinitrc_ is the right place for stuff like this.\r\n\r\nA background can easily set with a tool like "feh":http://linuxbrit.co.uk/software/feh/.
262 1 Christoph Kappel
263 1 Christoph Kappel
h2. Why don't my grabs work with xyz keyboard layout?
264 1 Christoph Kappel
Actually, I have no idea why setting the keyboard layout in your @xorg.conf@ isn't suffucient, but apparently you need to call *setxkbmap* in one of your startup files to set the keymap. My suggestion is to use the @~/.xinitrc@, because it is perfectly suited to setup Xorg and usually read.\r\n\r\nJust add something like this to your @~/.xinitrc@ *before* you start [[subtle]]: \r\n\r\n<pre><code>setxkbmap -layout 'de(nodeadkeys)'</code></pre>
265 1 Christoph Kappel
266 1 Christoph Kappel
h2. How to match a GLFW window
267 1 Christoph Kappel
GLFW set the windows name after the window get created, so you can't match a particular GLFW window by his name.\r\n\r\nto match any GLFW window :\r\n\r\n<pre>\r\ntag "glfw" do\r\n\tmatch name: "GLFW.*"\r\n\t# Your code....\r\nend\r\n</pre>
268 1 Christoph Kappel
269 1 Christoph Kappel
h2. How to match a GLFW window
270 1 Christoph Kappel
GLFW set the name of the window after the window get created, so you can't match a particular window by his name.\r\n\r\nto match any GLFW window :\r\n\r\n<pre>\r\ntag "glfw" do\r\n\tmatch name: "GLFW.*"\r\n\t# your code\r\nend\r\n</pre>
271 1 Christoph Kappel
272 1 Christoph Kappel
h2. How can I manually delete a sublet?
273 1 Christoph Kappel
[[Sublets]] usually consist of a *&#42;.rb* file, a *&#42;.spec* file and one or more icons. All these files can be found in their respective folder in @$XDG_DATA_HOME/subtle@ resp. @~/.local/share/subtle@. After deleting the [[sublets|sublet]] files the cache of [[sur]] needs to be updated or otherwise [[sur]] will think the [[sublets|sublet]] is still installed: @sur update -l@
274 1 Christoph Kappel
275 1 Christoph Kappel
h2. Where does sur store sublets and icons?
276 1 Christoph Kappel
[[sur]] follows the "XDG Base Directory specifications":http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html to store data, which includes some base path for specific data types.\r\n\r\nFollowing paths are used:\r\n\r\n|_. Type  |_. XDG path                    |_. Default path                |\r\n| Sublets | @$XDG_DATA_HOME/subtle/sublets@ | @~/.local/share/subtle/sublets@ |\r\n| Icons   | @$XDG_DATA_HOME/subtle(icons@   | @~/.local/share/subtle/icons@   |
277 1 Christoph Kappel
278 1 Christoph Kappel
h2. How to match a GLFW window
279 1 Christoph Kappel
GLFW set the name of the window after the window get created, so you can't match a particular window by his name.\r\n\r\nto match any GLFW window :\r\n\r\n<pre>\r\ntag "glfw" do\r\n\tmatch name: "GLFW.*"\r\n\t# your code\r\nend\r\n</pre>
280 1 Christoph Kappel
281 1 Christoph Kappel
h2. How do I run a program on startup/autostart?
282 1 Christoph Kappel
Let's say you want "urxvt":http://software.schmorp.de/pkg/rxvt-unicode.html to start after [[subtle]], and for some reason @echo "urxvt" >> ~/.xinitrc@ is just not cutting it. Using the *&#58;start* hook and [[subtlext]] we can simulate autostart like so:\r\n\r\n<pre>{{hide}}<code class="ruby">\r\non :start do\r\n  Subtlext::Subtle.spawn "urxvt"\r\nend\r\n</pre></code>
283 1 Christoph Kappel
284 1 Christoph Kappel
h2. Where is the output window of flash in fullscreen?
285 1 Christoph Kappel
For flash, browsers seem to use window instance and class names that doesn't match the browser values. Therefore the windows will usually appear on the default view.\r\n\r\nFollowing names are currently in use:\r\n\r\n|_. Browser       |_. Arch   |_. WM_NAME            |_. WM_CLASS                                 |\r\n| Firefox <7.0.1  | all      | <unknown>            | "<unknown>", "<unknown>"                   |\r\n| Firefox >=7.0.1 | all      | plugin-container     | "plugin-container", "Plugin-container"     |\r\n| Chromium        | all      | exe                  | "exe", "Exe"                               |\r\n| Opera           | x86      | "operapluginwrapper" | "operapluginwrapper", "Operapluginwrapper" |\r\n| nspluginwrapper | x86_64   | "npviewer.bin"       | "Npviewer.bin"                             |\r\n\r\nThe easiest way to avoid that is to add a [[tagging|tag]] that makes these windows sticky:\r\n\r\n<pre>{{hide}}<code class="ruby">tag "flash" do\r\n  match "<unknown>|plugin-container|exe|operapluginwrapper|npviewer.bin"\r\n  stick true\r\nend</code></pre>
286 1 Christoph Kappel
287 1 Christoph Kappel
h2. What is the difference between ViewSwitch and ViewJump?
288 1 Christoph Kappel
Boths keys change the [[view]] of the current active [[screens|screen]], but the behavior how they do that depends on if the system consists either of a single [[screens|screen]] or more.\r\n\r\nh2. Single screen\r\n\r\nHere both [[grabs]] do +exactly+ the same.\r\n\r\nh2. Multi screen\r\n\r\nHere the behavior depends on if the selected [[views|view]] is visible on another [[screens|screen]] or not.\r\n\r\n* *ViewSwitch* either swaps the current [[views|view]] with the selected if it is visible on another [[screens|screen]] or just sets the selected [[views|view]] on current [[screens|screen]].\r\n* *ViewJump* either focus the selected [[views|view]] if it is visible on another [[screens|screen]] or just sets the select [[views|view]] on current [[screens|screen]].
289 1 Christoph Kappel
290 1 Christoph Kappel
h2. Why does program XYZ appears/turns as/to a gray canvas?
291 1 Christoph Kappel
Generally, this happens, when a program needs a specific aspect ratio and [[subtle]] sets a gravity that violates this. Windows can tell the window manager about this kind of preferences via their size hints and [[subtle]] can honor those.\r\n\r\nThere are two possible ways:\r\n\r\n# Enable size hints globally with the _&#58;resize_ option\r\n  <pre>{{hide}}<code class="ruby">set :resize, true</code></pre>\r\n# Enable this per program via [[tagging|tag]]\r\n  <pre>{{hide}}<code class="ruby">tag "name" do\r\n  match  "name"\r\n  resize true\r\nend</code></pre>\r\n\r\nbq. Note: This can happen with "Java":http://java.com too, see "here":http://subforge.org/ezfaq/show/subtle?faq_id=14 for more information.
292 1 Christoph Kappel
293 1 Christoph Kappel
h2. How do I run a Java program?
294 1 Christoph Kappel
"Java":http://java.com *expects* a certain behaviour (_reparenting of client windows_) of a window manager which is not part of any standard, therefore some "Java":http://java.com programs just show a white canvas.\r\n\r\nIf this happens just try to start your program like this:\r\n\r\n<pre><code class="shell">AWT_TOOLKIT=MToolkit program</code></pre>\r\n\r\nThis changes the default tookit of "Java":http://java.com to _MToolkit_, which is known to work with non-reparenting windows managers like [[subtle]]. Depending on your "OpenJDK":http://openjdk.java.net version and your architecture this may either lead to a segmentation fault or your "OpenJDK":http://openjdk.java.net just has no support for *MToolkit*. In this case check if your distribution has applied a patch for this issue which allows something like this to change the default behaviour:\r\n\r\n<pre><code class="shell">_JAVA_AWT_WM_NONREPARENTING=1 program</code></pre>\r\n\r\nIn case both doesn't work there is a third option: "Java":http://java.com seems to use an internally hardcoded list of window managers that are non-reparenting, the "suckless":http://suckless.org guys made a tool ("wmname":http://tools.suckless.org/wmname) to change the name of the wm.\r\n\r\nSince r2520 [[subtle]] can do that for you, just enable the *&#58;wmname* option.\r\n\r\nGenerally this problem is really long lasting, see here: \r\n\r\nhttp://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6511454\r\nhttp://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508650\r\n\r\nbq. Note: Many problems only affect the "JRE":http://www.oracle.com/technetwork/java/javase/downloads/index.html and can be avoided by using the "OpenJDK":http://openjdk.java.net.\r\n\r\n
295 1 Christoph Kappel
296 1 Christoph Kappel
h2. How do I tag console based programs?
297 1 Christoph Kappel
When console based programs like "irssi":http://irssi.org are started with a terminal like @urxvt -e irssi@, they usually just change the *WM_NAME* of the terminal and per default, [[subtle]] uses both of the *WM_CLASS* values for tagging.\r\n\r\nThe problem about that is, that the [[tagging]] is normally done before the terminal really starts the desired app. To avoid that all better known terminals support the *-name* argument which changes the instance value (first string) of the *WM_CLASS*: @urxvt -name irssi -e irssi@\r\n\r\nAnother problem is that terminals retain their class value (second string) of the *WM_CLASS* and may match other [[tagging|tags]] like:\r\n\r\n<pre><code class="ruby">tag "terms" do\r\n  match "urxvt"\r\nend</code></pre>\r\n\r\nThe common solution to bypass is this to use the :instance matcher, which just matches when for the specific instance value. So the easiest way to reliable match this client is a [[tagging|tag]] like this:\r\n\r\n<pre><code class="ruby">tag "irssi" do\r\n  match :instance => "irssi"\r\nend</code></pre>\r\n\r\nFollowing table shows the *WM_NAME* and *WM_CLASS* output of "xprop":http://www.xfree86.org/current/xprop.1.html of the various combinations:\r\n\r\n|_. Command                  |_. WM_NAME    |_. WM_CLASS   |\r\n| urxvt                      | urxvt        | urxvt, URxvt |\r\n| urxvt -e irssi             | irssi        | urxvt, URxvt |\r\n| urxvt -name irssi          | urxvt        | irssi, URxvt |\r\n| urxvt -name irssi -e irssi | irssi        | irssi, URxvt |\r\n\r\nPlease have a look at the [[Tagging|tagging wiki page]] for more information.\r\n\r\n\r\n
298 1 Christoph Kappel
299 1 Christoph Kappel
h2. How can I use subtle without numpad?
300 1 Christoph Kappel
Per default [[subtle]] uses the numpad, because it's easier to remind the different postions when you can see them. Generally this is just a suggestion, it's up to you to change the grabs to your needs - any keys will work. \r\n\r\nKeys that also have proven to work well are *q-w-e*, *a-s-d* and *y-x-c*:\r\n\r\n<pre>{{hide}}<code class="ruby">grab "W-q", [ :top_left,     :top_left66,     :top_left33     ]\r\ngrab "W-w", [ :top,          :top66,          :top33          ]\r\ngrab "W-e", [ :top_right,    :top_right66,    :top_right33    ]\r\ngrab "W-a", [ :left,         :left66,         :left33         ]\r\ngrab "W-s", [ :center,       :center66,       :center33       ]\r\ngrab "W-d", [ :right,        :right66,        :right33        ]\r\n\r\n# QWERTZ\r\ngrab "W-y", [ :bottom_left,  :bottom_left66,  :bottom_left33  ]\r\n\r\n# QWERTY\r\ngrab "W-z", [ :bottom_left,  :bottom_left66,  :bottom_left33  ]\r\n\r\ngrab "W-x", [ :bottom,       :bottom66,       :bottom33       ]\r\ngrab "W-c", [ :bottom_right, :bottom_right66, :bottom_right33 ]\r\n</code></pre>\r\n\r\n\r\nYou can find more about assigning keys [[Grabs|here]].
301 1 Christoph Kappel
302 1 Christoph Kappel
h2. How does subtle match clients?
303 1 Christoph Kappel
[[subtle]] matches the {{color(#ff0000, WM_NAME)}} and the {{color(#0000ff, WM_CLASS)}} property of a window and not the title. This to ensure the match is correct. \r\nThere are several ways to get these values, here are the most common:\r\n\r\nSelect the window with "xprop":http://www.xfree86.org/current/xprop.1.htmland have a look for the {{color(#ff0000, WM_NAME)}} and {{color(#0000ff, WM_CLASS)}} lines which usually look like this:\r\n\r\n<pre><code class="bash">{{color(#0000ff, WM_NAME)}}(STRING) = "urxvt"\r\n{{color(#ff0000, WM_CLASS)}}(STRING) = {{color(#aa0000, "irssi")}}, {{color(#ff00ff, "URxvt")}}</code></pre>\r\n\r\nRun *[[subtler]] -cl* and look for the matching line:\r\n\r\n<pre><code class="bash">0x800007 * 1 1020x374 2 1 --- {{color(#ff0000, urxvt)}} ({{color(#0000ff,URxvt)}})</code></pre>
304 1 Christoph Kappel
305 1 Christoph Kappel
h2. Is subtle a reparenting window manager?
306 1 Christoph Kappel
*Nope*, [[subtle]] doesn't reparent windows and there is in fact *no* reason to do that. The layout in [[subtle]] is a really loose set, the only relation between a [[views|view]] and a [[client]] is [[tagging]] and this is checked on every [[views|view]] update.\r\n\r\nReparenting windows would require following additional steps, when a window is visible on a certain [[views|view]]:\r\n\r\n# Resize the [[views|view]] toplevel window to the size of the current [[screen]]\r\n# Reparent the [[client]] window to the toplevel window\r\n# Handle (ignore here) the generated expose and crossing events\r\n\r\nProbably sounds like not much overhead, but keep in mind this is just required because the developer of "Java":http://www.java.com/ and "Qt":http://qt.nokia.com/products/ cannot understand following line from the "ICCCM":http://tronche.com/gui/x/icccm/sec-4.html#s-4.2.1:\r\n\r\nbq. Clients must be aware that some window managers will reparent their top-level windows so that a window that was created as a child of the root will be displayed as a child of some window belonging to the window manager
307 1 Christoph Kappel
308 1 Christoph Kappel
h2. How do I move a program to another view?
309 1 Christoph Kappel
Placement in [[subtle]] is +strict+ and completely done via [[tagging]]. There are many ways to change [[tagging|tags]] per runtime, common is to use either [[subtler]] or [[subtlext]].\r\n\r\nh2. subtler\r\n\r\n[[subtler]] can be used on the commandline:\r\n\r\n<pre>{{hide}}<code class="ruby">\r\nsubtler -ta tag         #< Add new tag 'tag'\r\nsubtler -cT client tag  #< Tag client 'client' with tag 'tag'\r\nsubtler -vT view tag    #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nh2. subtlext\r\n\r\n[[subtlext]] requires basic "ruby":http://ruby-lang.org knowledge:\r\n\r\n<pre>{{hide}}<code class="ruby">require "subtle/subtlext"\r\n\r\ntag = Subtlext::Tag.new("tag").save  #< Add new tag 'tag'\r\nSubtlext::Client["client"] + "tag"   #< Tag client 'client' with tag 'tag'\r\nSubtlext::View["view"] + "tag"       #< Tag view 'view' with tag 'tag'\r\n</code></pre>\r\n\r\nh2. Snippets\r\n\r\nThe [[snippets]] wiki page includes examples how to [[snippets#Move-windows|move to another view]].\r\n\r\nh2. Contrib\r\n\r\nh3. Vitag\r\n\r\n"subtle-contrib":http://subforge.org/projects/subtle-contrib/wiki contains [[subtle-contrib:vitag|vitag]] a script to change the [[tagging|tags]] of windows and views with an editor.\r\n\r\nh3. Launcher\r\n\r\nThe "launcher":http://subforge.org/projects/subtle-contrib/wiki#Launcher uses quite the opposite way, instead of moving a window to a certain screen it just provides a way to launch a window directly on the right view with the correct [[tagging|tags]].\r\n\r\nh2. Stick\r\n\r\nMost of the time, setting the window to *stick* does the trick too. Stick just displays the window on all views until the mode is disabled again. This can be done with [[grabs]] (default keys: *W-s*) or with [[subtler]]. (click on the window: @subtler -cXS@)\r\n\r\n
310 1 Christoph Kappel
311 1 Christoph Kappel
h2. What is required for the volume sublet?
312 1 Christoph Kappel
The volume [[sublets|sublet]] uses @/dev/mixer@ to set/get the volume levels, which is an older interface introduced with "OSS":http://www.opensound.com/ and still available via "ALSA OSS emulation":http://www.alsa-project.org/. Apparently, newer kernels refuse to autoload that module anymore and you need to load it manually or via any init file.\r\n\r\n{{info(Please check to the docs of your distribution how to do it.)}}\r\n\r\n<pre><code>modprobe snd_mixer_oss</code></pre>\r\n\r\n{{warn(Following explanation is technical!)}}\r\n\r\nThe [[sublets|sublet]] needs a way to access a mixer without any asynchronous callbacks. The reason for that is that [[subtle]] is single-threaded and can't use a dedicated thread to wait for the reply, but the APIs of "ALSA":http://www.alsa-project.org/ and "PulseAudio":http://pulseaudio.org are both designed to be asynchronous. Normally event drivven is fine but it is troublesome when you can't use their mainloop.\r\n\r\nSince there is no way to add e.g. a control socket to the event main loop of [[subtle]], the @/dev/mixer@ approach is the only way and works for all sound systems.