diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2013-01-31 08:13:45 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2013-01-31 08:14:06 (GMT) |
commit | dc47491533e0ca7cf5a5386a10e68fbaf873e9db (patch) | |
tree | 4ee0c68722207189912a106d3f77e9cab52e65a8 /src/FbTk/StringUtil.hh | |
parent | 716532dd47d718cb548da5f65b53a8b744ce235f (diff) | |
download | fluxbox_pavel-dc47491533e0ca7cf5a5386a10e68fbaf873e9db.zip fluxbox_pavel-dc47491533e0ca7cf5a5386a10e68fbaf873e9db.tar.bz2 |
Adds 'ClientPatternTest' command
ClientPatterns might be tricky to get right. Instead of fiddling around in
either the keys-file or the apps-file and restarting fluxbox to see if the
changes had any effect / matched the right windows, 'ClientPatternTest' and
the fluxbox-remote should make this easier:
$> fluxbox-remote "clientpatterntest (title=.*vim*)"
This causes fluxbox to store the list of matched windows in the
_FLUXBOX_ACTION_RESULT property onto the rootwindow. This property might
then be read by:
$> xprop -root _FLUXBOX_ACTION_RESULT
or
$> fluxbox-remote result
The format of the list is:
win_id \t title_of_window \n
win_id is '-1' when fluxbox wasn't able to parse the given ClientPattern.
win_id is '0' when there are no windows matching the given ClientPattern.
Diffstat (limited to 'src/FbTk/StringUtil.hh')
-rw-r--r-- | src/FbTk/StringUtil.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/FbTk/StringUtil.hh b/src/FbTk/StringUtil.hh index 538828b..930e0b5 100644 --- a/src/FbTk/StringUtil.hh +++ b/src/FbTk/StringUtil.hh | |||
@@ -44,6 +44,7 @@ int extractNumber(const std::string& in, unsigned long long& out); | |||
44 | 44 | ||
45 | /// creates a number to a string | 45 | /// creates a number to a string |
46 | std::string number2String(long long num); | 46 | std::string number2String(long long num); |
47 | std::string number2HexString(long long num); | ||
47 | 48 | ||
48 | /// Similar to `strstr' but this function ignores the case of both strings | 49 | /// Similar to `strstr' but this function ignores the case of both strings |
49 | const char *strcasestr(const char *str, const char *ptn); | 50 | const char *strcasestr(const char *str, const char *ptn); |