]> git.sur5r.net Git - i3/i3/log
i3/i3
8 years agoMerge pull request #1771 from Airblader/feature-1769
Michael Stapelberg [Tue, 30 Jun 2015 20:52:54 +0000 (13:52 -0700)]
Merge pull request #1771 from Airblader/feature-1769

Implement new criterion 'workspace'.

8 years agoMerge pull request #1772 from Airblader/feature-fix-newline
Michael Stapelberg [Tue, 30 Jun 2015 20:52:48 +0000 (13:52 -0700)]
Merge pull request #1772 from Airblader/feature-fix-newline

Added missing newlines in log statements.

8 years agoImplement new criterion 'workspace'. 1771/head
Ingo Bürk [Mon, 29 Jun 2015 21:58:48 +0000 (23:58 +0200)]
Implement new criterion 'workspace'.

If the match expression is a plain number (e.g., '99'), the number of a workspace will be compared strictly. Otherwise, the match expression is taken as a regular expression and compared against the workspace's name.
This allows all of the following:

for_window [workspace=5] ...
for_window [workspace="5:foo"] ...
for_window [workspace="foo"] ...

fixes #1769

8 years agoMerge pull request #1768 from hwangcc23/atoi2strtol
Michael Stapelberg [Tue, 30 Jun 2015 18:50:28 +0000 (11:50 -0700)]
Merge pull request #1768 from hwangcc23/atoi2strtol

Fix TODO in src/bindings.c

8 years agoAdded missing newlines in log statements. 1772/head
Ingo Bürk [Tue, 30 Jun 2015 18:48:35 +0000 (20:48 +0200)]
Added missing newlines in log statements.

8 years agoFix TODO by replacing atoi by strtol 1768/head
hwangcc23 [Thu, 25 Jun 2015 14:33:50 +0000 (22:33 +0800)]
Fix TODO by replacing atoi by strtol

Fix TODO in bindings.c.
There is no problem to use atoi here since either keycode 0 or button0 is invalid.
But strtol is more flexible and is recommanded for conversion.

8 years agoMerge pull request #1747 from Airblader/feature-1723
Michael Stapelberg [Mon, 29 Jun 2015 07:24:59 +0000 (00:24 -0700)]
Merge pull request #1747 from Airblader/feature-1723

Implement "title_format"

8 years agoAdded documentation for "title_format". 1747/head
Ingo Bürk [Thu, 11 Jun 2015 05:26:01 +0000 (07:26 +0200)]
Added documentation for "title_format".

8 years agoMerge pull request #1745 from mh21/configurable-tray-padding
Michael Stapelberg [Mon, 29 Jun 2015 07:19:44 +0000 (00:19 -0700)]
Merge pull request #1745 from mh21/configurable-tray-padding

Configurable tray padding.

8 years agoParse the title_format and display the customized window title if a format was set.
Ingo Bürk [Wed, 10 Jun 2015 17:01:05 +0000 (19:01 +0200)]
Parse the title_format and display the customized window title if a format was set.
The format string set with "title_format" can contain the placeholder "%title" which will be replaced with the actual window title.

By not overwriting window->name itself, we make sure that assignment matching still works as expected.

fixes #1723

8 years agoAdded command directive 'title_format'.
Ingo Bürk [Wed, 10 Jun 2015 16:59:45 +0000 (18:59 +0200)]
Added command directive 'title_format'.
This directive will be used to customize the window title.

8 years agoadd util-{wm,keysyms} explicitly, remove obsolete xlib, update lkgv
Michael Stapelberg [Sun, 28 Jun 2015 19:27:52 +0000 (21:27 +0200)]
add util-{wm,keysyms} explicitly, remove obsolete xlib, update lkgv

fixes #1764

8 years agoConfigurable tray padding. 1745/head
Michael Hofmann [Tue, 9 Jun 2015 08:06:45 +0000 (10:06 +0200)]
Configurable tray padding.

8 years agodebian: stacklimit.png got deleted, so remove it from i3-wm.docs
Michael Stapelberg [Sun, 21 Jun 2015 11:24:35 +0000 (13:24 +0200)]
debian: stacklimit.png got deleted, so remove it from i3-wm.docs

8 years agoMerge pull request #1697 from Airblader/feature-1695
Michael Stapelberg [Thu, 18 Jun 2015 18:50:56 +0000 (20:50 +0200)]
Merge pull request #1697 from Airblader/feature-1695

Extend mouse commands on i3bar

8 years agoAdded testcase for #1695. 1697/head
Ingo Bürk [Thu, 4 Jun 2015 13:55:39 +0000 (15:55 +0200)]
Added testcase for #1695.

8 years agoEnsure format of dumped bindings for i3bar is compatible with i3 bindings.
Ingo Bürk [Sat, 23 May 2015 20:48:29 +0000 (16:48 -0400)]
Ensure format of dumped bindings for i3bar is compatible with i3 bindings.

fixes #1695

8 years agoAdapted userguide for new i3bar 'bindsym' command.
Ingo Bürk [Sat, 2 May 2015 19:56:10 +0000 (21:56 +0200)]
Adapted userguide for new i3bar 'bindsym' command.

8 years agoRead 'bindsym' rather than the old 'wheel_up_cmd' and 'wheel_down_cmd' directives...
Ingo Bürk [Sat, 13 Jun 2015 12:58:41 +0000 (14:58 +0200)]
Read 'bindsym' rather than the old 'wheel_up_cmd' and 'wheel_down_cmd' directives in i3bar and call the command if specified.
The old directives are still read for transitional support which can be removed in a future version.

8 years agoMerge pull request #1752 from Airblader/feature-test-cleanups-1
Michael Stapelberg [Sat, 13 Jun 2015 12:39:19 +0000 (14:39 +0200)]
Merge pull request #1752 from Airblader/feature-test-cleanups-1

Silence "masks earlier declaration in same scope" warnings

8 years agoMerge pull request #1744 from Airblader/feature-docs-7
Michael Stapelberg [Sat, 13 Jun 2015 10:39:59 +0000 (12:39 +0200)]
Merge pull request #1744 from Airblader/feature-docs-7

Documentation Improvements

8 years agoSilence "masks earlier declaration in same scope" warnings when executing tests. 1752/head
Ingo Bürk [Fri, 12 Jun 2015 16:19:43 +0000 (18:19 +0200)]
Silence "masks earlier declaration in same scope" warnings when executing tests.

8 years agoFix documentation for border styles. 1744/head
Ingo Bürk [Tue, 9 Jun 2015 21:13:40 +0000 (23:13 +0200)]
Fix documentation for border styles.

8 years agouserguide: document signal handling caveat affecting at least dash(1)
Michael Stapelberg [Fri, 12 Jun 2015 07:52:02 +0000 (09:52 +0200)]
userguide: document signal handling caveat affecting at least dash(1)

fixes #1741

8 years agoRemove dead documentation for non-existing feature "stack-limit".
Ingo Bürk [Tue, 9 Jun 2015 21:13:15 +0000 (23:13 +0200)]
Remove dead documentation for non-existing feature "stack-limit".

8 years agoMerge pull request #1743 from Airblader/bug-1742
Michael Stapelberg [Tue, 9 Jun 2015 21:12:17 +0000 (23:12 +0200)]
Merge pull request #1743 from Airblader/bug-1742

Remove redundant and broken check for '\0'.

8 years agoRemove redundant and broken check for '\0'. 1743/head
Ingo Bürk [Tue, 9 Jun 2015 20:14:56 +0000 (22:14 +0200)]
Remove redundant and broken check for '\0'.

fixes #1742

8 years agoMerge pull request #1731 from Airblader/feature-indicator-pango
Michael Stapelberg [Sun, 7 Jun 2015 18:46:16 +0000 (20:46 +0200)]
Merge pull request #1731 from Airblader/feature-indicator-pango

Allow pango markup for the binding indicator.

8 years agoImplement i3's logic for maintaining a list of 'bindsym' directives and passing it...
Ingo Bürk [Sat, 2 May 2015 19:54:56 +0000 (21:54 +0200)]
Implement i3's logic for maintaining a list of 'bindsym' directives and passing it to i3bar through the IPC.

8 years agoAdd new command skeleton 'bindsym <button> <command>' for 'bar' block.
Ingo Bürk [Sat, 2 May 2015 19:53:23 +0000 (21:53 +0200)]
Add new command skeleton 'bindsym <button> <command>' for 'bar' block.

8 years agoMerge pull request #1737 from Airblader/feature-xdotool-on-travis
Michael Stapelberg [Fri, 5 Jun 2015 10:16:47 +0000 (12:16 +0200)]
Merge pull request #1737 from Airblader/feature-xdotool-on-travis

Install xdotool to run tests requiring it on Travis.

8 years agoInstall xdotool to run tests requiring it on Travis. 1737/head
Ingo Bürk [Thu, 4 Jun 2015 15:05:53 +0000 (17:05 +0200)]
Install xdotool to run tests requiring it on Travis.

8 years agoMerge pull request #1735 from shdown/strdup
Michael Stapelberg [Tue, 2 Jun 2015 20:25:27 +0000 (22:25 +0200)]
Merge pull request #1735 from shdown/strdup

i3bar: fix freeing static strings

8 years agoi3bar: fix freeing static strings 1735/head
shdown [Tue, 2 Jun 2015 20:08:08 +0000 (23:08 +0300)]
i3bar: fix freeing static strings

name and color fields of blocks are freed in clear_statusline, so they
need to be strdup'ed.

8 years agoMerge pull request #1733 from Airblader/feature-1732
Michael Stapelberg [Tue, 2 Jun 2015 06:35:14 +0000 (08:35 +0200)]
Merge pull request #1733 from Airblader/feature-1732

Added a separate color directive for the binding mode indicator

8 years agoMerge pull request #1734 from Airblader/bug-1538-1
Michael Stapelberg [Tue, 2 Jun 2015 06:33:41 +0000 (08:33 +0200)]
Merge pull request #1734 from Airblader/bug-1538-1

Fix warning about potentially uninitialized variable.

8 years agoFix warning about potentially uninitialized variable. 1734/head
Ingo Bürk [Mon, 1 Jun 2015 15:10:10 +0000 (17:10 +0200)]
Fix warning about potentially uninitialized variable.

8 years agoUse the introduced binding_mode_* colors to draw the binding mode. 1733/head
Ingo Bürk [Sun, 31 May 2015 14:27:58 +0000 (16:27 +0200)]
Use the introduced binding_mode_* colors to draw the binding mode.

fixes #1732

8 years agoAdded the 'binding_mode' color directive to the documentation.
Ingo Bürk [Sun, 31 May 2015 14:07:40 +0000 (16:07 +0200)]
Added the 'binding_mode' color directive to the documentation.

8 years agoIntroduce a config directive 'binding_mode' in the 'bar' config, pass it through...
Ingo Bürk [Sun, 31 May 2015 14:07:23 +0000 (16:07 +0200)]
Introduce a config directive 'binding_mode' in the 'bar' config, pass it through the IPC and parse it in i3bar.

8 years agoMerge pull request #1725 from Airblader/bug-1056
Michael Stapelberg [Sun, 31 May 2015 14:13:51 +0000 (16:13 +0200)]
Merge pull request #1725 from Airblader/bug-1056

Allow window decoration to change focus

8 years agoAllow pango markup for the binding indicator. 1731/head
Ingo Bürk [Sun, 31 May 2015 10:35:47 +0000 (12:35 +0200)]
Allow pango markup for the binding indicator.

8 years agoUse XCB_NONE instead of hard-coded 0. 1725/head
Ingo Bürk [Fri, 29 May 2015 18:28:35 +0000 (20:28 +0200)]
Use XCB_NONE instead of hard-coded 0.

8 years agoAllow hovering over the window decoration to change the focus if the parent container...
Ingo Bürk [Fri, 29 May 2015 18:28:24 +0000 (20:28 +0200)]
Allow hovering over the window decoration to change the focus if the parent container is split horizontally or vertically.

fixes #1056

8 years agoAdded a testcases for #1056 to test whether hovering over a window decoration causes...
Ingo Bürk [Fri, 29 May 2015 21:49:22 +0000 (23:49 +0200)]
Added a testcases for #1056 to test whether hovering over a window decoration causes the corresponding window to be
focused.

8 years agoMerge pull request #1722 from Airblader/bug-1701
Michael Stapelberg [Wed, 27 May 2015 17:27:56 +0000 (19:27 +0200)]
Merge pull request #1722 from Airblader/bug-1701

Grab all buttons when managing a window

8 years agoImprove logging of button events. 1722/head
Ingo Bürk [Tue, 26 May 2015 14:57:25 +0000 (16:57 +0200)]
Improve logging of button events.

8 years agoGrab all buttons when managing a window to also allow 'bindsym --whole-window button4...
Ingo Bürk [Tue, 26 May 2015 14:56:00 +0000 (16:56 +0200)]
Grab all buttons when managing a window to also allow 'bindsym --whole-window button4 …' to work correctly.

fixes #1701

8 years agodocs/ipc: add veelenga/i3ipc-ruby
Michael Stapelberg [Sun, 24 May 2015 23:05:08 +0000 (01:05 +0200)]
docs/ipc: add veelenga/i3ipc-ruby

8 years agoMerge pull request #1714 from Airblader/feature-docs-6
Michael Stapelberg [Sun, 24 May 2015 22:51:41 +0000 (00:51 +0200)]
Merge pull request #1714 from Airblader/feature-docs-6

Fixed syntax for tray_output in userguide

8 years agoMerge pull request #1716 from botovq/next
Michael Stapelberg [Sat, 23 May 2015 11:33:33 +0000 (13:33 +0200)]
Merge pull request #1716 from botovq/next

mkdirp: do not throw an error if directory exists

8 years agomkdirp: do not throw an error if directory exists 1716/head
Theo Buehler [Sat, 23 May 2015 11:12:18 +0000 (13:12 +0200)]
mkdirp: do not throw an error if directory exists

If I restart i3 4.10.2 twice, e.g. with

$ i3-msg restart; sleep 3; i3-msg restart

the second time I get the following two errors:

05/22/15 10:46:03 - ERROR: mkdir(/tmp/i3-theo.toAK7N) failed: File exists
05/22/15 10:46:03 - ERROR: Could not create "/tmp/i3-theo.toAK7N" for storing the restart layout, layout will be lost.

The first one is from mkdirp() in src/ipc.c and the second one is from
store_restart_layout() in src/util.c.

Notice that I do _not_ get the ``open()'' or ``Could not write restart layout to
...'' error messages, so the layout writing code after line 260 in
store_restart_layout() succeeded and the layout isn't actually lost.  Thus,
these error messages are a bit misleading, especially the second one (which is
triggered by the failure of mkdirp()).

POSIX says about `mkdir -p':

``Each dir operand that names an existing directory shall be ignored without
error.''

Therefore, I suggest the following simple patch that makes mkdirp() succeed if
the named file exists and actually is a directory.  This silences the second
error as well.

8 years agoFixed syntax for tray_output in userguide. 1714/head
Ingo Bürk [Sat, 23 May 2015 02:07:43 +0000 (22:07 -0400)]
Fixed syntax for tray_output in userguide.

8 years agoMerge pull request #1706 from Airblader/feature-docs-5
Michael Stapelberg [Mon, 18 May 2015 19:46:47 +0000 (21:46 +0200)]
Merge pull request #1706 from Airblader/feature-docs-5

Made syntax of syntax descriptions consistent:

8 years agoMade syntax of syntax descriptions consistent: 1706/head
Ingo Bürk [Tue, 12 May 2015 22:07:01 +0000 (18:07 -0400)]
Made syntax of syntax descriptions consistent:

* <xyz> denotes that some string must be used which is not a fixed value (e.g., a command), but a variable string (text, a number, ...)
* [xyz] denotes that the parameter is optional
* abc|xyz denotes that either abc or xyz must be given

8 years agoMerge pull request #1698 from Airblader/feature-1696
Michael Stapelberg [Sun, 17 May 2015 13:02:50 +0000 (15:02 +0200)]
Merge pull request #1698 from Airblader/feature-1696

Added 'move position mouse'

8 years agoProtect "move position mouse" against a NULL access. 1698/head
Ingo Bürk [Thu, 14 May 2015 17:07:56 +0000 (13:07 -0400)]
Protect "move position mouse" against a NULL access.
This could happen if two outputs are set up to have a gap in between them and the mouse cursor
being in said gap when the command is triggered.

8 years agoAdded testcases for 'move position mouse'
Ingo Bürk [Sun, 3 May 2015 14:19:23 +0000 (16:19 +0200)]
Added testcases for 'move position mouse'

8 years agoMerge pull request #1704 from acrisci/bug/cmd-detect-base-16
Michael Stapelberg [Wed, 13 May 2015 06:35:06 +0000 (08:35 +0200)]
Merge pull request #1704 from acrisci/bug/cmd-detect-base-16

Detect base 16 in cmd criteria

8 years agoAdded 'move position mouse' command to the userguide.
Ingo Bürk [Sun, 3 May 2015 12:59:30 +0000 (14:59 +0200)]
Added 'move position mouse' command to the userguide.

8 years agoImplemented new command 'move [window|container] [to] position mouse|cursor|pointer
Ingo Bürk [Sat, 2 May 2015 22:19:26 +0000 (00:19 +0200)]
Implemented new command 'move [window|container] [to] position mouse|cursor|pointer

fixes #1696

8 years agoDetect base 16 in cmd criteria 1704/head
Tony Crisci [Tue, 12 May 2015 21:04:01 +0000 (17:04 -0400)]
Detect base 16 in cmd criteria

Try to detect base 16 numbers given to `con_id` and `id` for command criteria
by setting the base of strtol to 0. This should also detect octal.

This is necessary because mouse bindings now may be serialized as hex as of
5c32de4.

8 years agoMerge pull request #1700 from mh21/tray-icon-size-cleanup
Michael Stapelberg [Tue, 12 May 2015 20:44:08 +0000 (22:44 +0200)]
Merge pull request #1700 from mh21/tray-icon-size-cleanup

Tray icon size cleanup.

8 years agoMerge pull request #1693 from mh21/wm-class-garbage-no-copy
Michael Stapelberg [Thu, 7 May 2015 06:55:47 +0000 (23:55 -0700)]
Merge pull request #1693 from mh21/wm-class-garbage-no-copy

Don't duplicate property value on class change.

8 years agoNo memcpy on class change. 1693/head
Michael Hofmann [Mon, 30 Mar 2015 10:02:39 +0000 (12:02 +0200)]
No memcpy on class change.

8 years agoIntroduce sstrndup wrapper.
Michael Hofmann [Wed, 6 May 2015 14:28:29 +0000 (16:28 +0200)]
Introduce sstrndup wrapper.

8 years agoMerge pull request #1638 from hwangcc23/fix-1489
Michael Stapelberg [Tue, 5 May 2015 07:43:43 +0000 (00:43 -0700)]
Merge pull request #1638 from hwangcc23/fix-1489

Add a timeout: delay_exit_on_zero_displays

8 years agouserguide: quoted strings need to be used, escaping isn’t possible
Michael Stapelberg [Sun, 3 May 2015 16:57:05 +0000 (18:57 +0200)]
userguide: quoted strings need to be used, escaping isn’t possible

fixes #1678

8 years agoMerge pull request #1689 from Airblader/feature-docs-4
Michael Stapelberg [Sun, 3 May 2015 09:28:45 +0000 (02:28 -0700)]
Merge pull request #1689 from Airblader/feature-docs-4

Debugging docs – minimal setup, small log file, closed source software

8 years agoAdded a section to the debugging docs: 1689/head
Ingo Bürk [Sun, 26 Apr 2015 21:07:41 +0000 (23:07 +0200)]
Added a section to the debugging docs:
* Motivate users to come up with clear and minimal instructions on how to reproduce a problem before submitting an issue.
* Encourage users to restart i3 before reproducing the problem so that the log file can stay small and noise-free.
* Mention the non-support of closed source software.

8 years agoMerge pull request #1685 from Deiz/fix-new-workspace-float
Michael Stapelberg [Sat, 2 May 2015 15:24:54 +0000 (08:24 -0700)]
Merge pull request #1685 from Deiz/fix-new-workspace-float

Initialize workspace rect to the output's upon creation

9 years agoTray icon size cleanup. 1700/head
Michael Hofmann [Mon, 30 Mar 2015 22:07:50 +0000 (00:07 +0200)]
Tray icon size cleanup.

- icon_size instead of font.height
- consistent spacing with tray_spacing_px

9 years agoInitialize workspace rect to the output's upon creation 1685/head
Deiz [Sun, 26 Apr 2015 18:23:08 +0000 (14:23 -0400)]
Initialize workspace rect to the output's upon creation

The comment immediately following implied that this was the intended
behaviour. Not doing so means that compound commands that both move a
window to a new workspace as well as do something that depends on the
workspace's geometry (e.g. 'move position center' or 'floating enable'
on a tiled window) would use the workspace's calloc'd 0x0+0x0 geometry.

9 years agoMerge pull request #1680 from acrisci/bug/randr-disabled-outputs
Michael Stapelberg [Sun, 26 Apr 2015 21:44:03 +0000 (23:44 +0200)]
Merge pull request #1680 from acrisci/bug/randr-disabled-outputs

Check if output is disabled in handle_output()

9 years agoMerge pull request #1657 from Georgiy-Tugai/fix-flickering-shortened
Michael Stapelberg [Sun, 26 Apr 2015 21:38:27 +0000 (23:38 +0200)]
Merge pull request #1657 from Georgiy-Tugai/fix-flickering-shortened

i3bar: fix flickering shortened status bar on other output(s)

9 years agoMerge pull request #1683 from Airblader/bug-click-detection
Michael Stapelberg [Sun, 26 Apr 2015 21:36:28 +0000 (23:36 +0200)]
Merge pull request #1683 from Airblader/bug-click-detection

Only detect clicks within the statusline width.

9 years agoMerge pull request #1688 from Airblader/feature-1687
Michael Stapelberg [Sun, 26 Apr 2015 21:31:12 +0000 (23:31 +0200)]
Merge pull request #1688 from Airblader/feature-1687

Added a note to the debugging docs about sensitive data.

9 years agoAdded a note to the debugging docs about sensitive data. 1688/head
Ingo Bürk [Sun, 26 Apr 2015 20:51:16 +0000 (22:51 +0200)]
Added a note to the debugging docs about sensitive data.

resolves #1687

9 years agoMerge pull request #1684 from acrisci/bug/focus-without-input-hint
Michael Stapelberg [Sun, 26 Apr 2015 10:15:38 +0000 (12:15 +0200)]
Merge pull request #1684 from acrisci/bug/focus-without-input-hint

Ignore InputHint when not in WM_HINTS

9 years agoMerge pull request #1672 from acrisci/bug/fix-freebsd-bindmouse
Michael Stapelberg [Sun, 26 Apr 2015 10:13:43 +0000 (12:13 +0200)]
Merge pull request #1672 from acrisci/bug/fix-freebsd-bindmouse

bugfix: serialize con_id with %p in run_binding()

9 years agoIgnore InputHint when not in WM_HINTS 1684/head
Tony Crisci [Sun, 26 Apr 2015 02:43:46 +0000 (22:43 -0400)]
Ignore InputHint when not in WM_HINTS

When InputHint is not in WM_HINTS (i.e., the flag is not set), treat the window
as if the InputHint was set (the default behavior). This means that i3 will
focus the window when it becomes managed.

fixes #1676

9 years agoBugfix: serialize con_id with %p in run_binding() 1672/head
Tony Crisci [Sun, 26 Apr 2015 00:05:55 +0000 (20:05 -0400)]
Bugfix: serialize con_id with %p in run_binding()

%p is equivalent to either %x or %lx, depending on the pointer size of the
platform. Before this commit, we always used %d, which has the same behavior
on Linux, but is not automatically expanded to %ld on e.g. FreeBSD.

fixes #1661

9 years agoOnly detect clicks within the statusline width. 1683/head
Ingo Bürk [Sat, 25 Apr 2015 21:31:56 +0000 (23:31 +0200)]
Only detect clicks within the statusline width.

If the user clicks on the very top of i3bar above a tray icon, i3bar might
mistakenly trigger the click event for the last status block. This is due to
the fact that the click detection considers the separator width of the block
even though on the last block this is ignored, incorrectly spanning the block's
width partially (or entirely) across the tray area.

9 years agouserguide: add a note to both “exec”s about semicolon and comma
Michael Stapelberg [Fri, 24 Apr 2015 16:46:42 +0000 (18:46 +0200)]
userguide: add a note to both “exec”s about semicolon and comma

fixes #1678

9 years agoCheck if output is disabled in handle_output() 1680/head
Tony Crisci [Thu, 23 Apr 2015 22:21:15 +0000 (18:21 -0400)]
Check if output is disabled in handle_output()

Check if the `connection` of the randr output is
XCB_RANDR_CONNECTION_DISONNECTED and disable the output if it is.

This fixes an issue where the output would not be disabled if the output was
physically unplugged from the machine.

9 years agoMerge pull request #1664 from Airblader/feature-wm-state-hidden-2
Michael Stapelberg [Tue, 21 Apr 2015 08:09:51 +0000 (10:09 +0200)]
Merge pull request #1664 from Airblader/feature-wm-state-hidden-2

Set _NET_WM_STATE_HIDDEN in tabbed/stacked containers

9 years agoAdded testcases for setting _NET_WM_STATE_HIDDEN on unfocused containers in tabbed... 1664/head
Ingo Bürk [Fri, 17 Apr 2015 18:09:53 +0000 (20:09 +0200)]
Added testcases for setting _NET_WM_STATE_HIDDEN on unfocused containers in tabbed/stacked containers.

9 years agoSet the _NET_WM_STATE_HIDDEN atom on windows that are currently not visible due to...
Ingo Bürk [Thu, 16 Apr 2015 17:43:23 +0000 (19:43 +0200)]
Set the _NET_WM_STATE_HIDDEN atom on windows that are currently not visible due to being in the non-focused tab of a stacked or tabbed container.

fixes #1648

9 years agoAdded 'con_is_hidden' to check whether a given container is visible to the user assum...
Ingo Bürk [Thu, 16 Apr 2015 17:42:31 +0000 (19:42 +0200)]
Added 'con_is_hidden' to check whether a given container is visible to the user assuming its workspace is visible.
This is useful for determining whether we want to set the _NET_WM_STATE_HIDDEN atom on the window.

9 years agoMerge pull request #1665 from Airblader/feature-1658
Michael Stapelberg [Tue, 21 Apr 2015 06:42:16 +0000 (08:42 +0200)]
Merge pull request #1665 from Airblader/feature-1658

Added criterion 'window_type'

9 years agoMerge pull request #1669 from Airblader/feature-docs-2
Michael Stapelberg [Tue, 21 Apr 2015 06:32:13 +0000 (08:32 +0200)]
Merge pull request #1669 from Airblader/feature-docs-2

Documentation Improvement – Debug i3bar

9 years agoMerge pull request #1636 from Deiz/update-notices
Michael Stapelberg [Tue, 21 Apr 2015 06:31:40 +0000 (08:31 +0200)]
Merge pull request #1636 from Deiz/update-notices

Update copyright notices and get rid of ranges

9 years agoMerge pull request #1666 from Xarthisius/undef_FALSE
Michael Stapelberg [Tue, 21 Apr 2015 06:29:55 +0000 (08:29 +0200)]
Merge pull request #1666 from Xarthisius/undef_FALSE

Fix ‘FALSE’ undeclared (first use in this function) when i3 is built w/o PANGO

9 years agoi3bar: fix flickering shortened status bar on other output(s) 1657/head
Georgiy Tugai [Tue, 21 Apr 2015 02:58:43 +0000 (12:28 +0930)]
i3bar: fix flickering shortened status bar on other output(s)

9 years agoFix ‘FALSE’ undeclared (first use in this function) when i3 is built without PANGO... 1666/head
Kacper Kowalik (Xarthisius) [Sun, 19 Apr 2015 15:26:10 +0000 (10:26 -0500)]
Fix ‘FALSE’ undeclared (first use in this function) when i3 is built without PANGO support

9 years agoUpdate copyright notices and get rid of ranges 1636/head
Deiz [Sat, 4 Apr 2015 00:17:56 +0000 (20:17 -0400)]
Update copyright notices and get rid of ranges

The script used to make these changes can be found at:

   https://gist.github.com/Deiz/32322020f76d23e2bf8f

9 years agoMerge pull request #1674 from Airblader/feature-docs-3
Michael Stapelberg [Mon, 20 Apr 2015 21:29:24 +0000 (23:29 +0200)]
Merge pull request #1674 from Airblader/feature-docs-3

Adapt release.sh to update the latest version in the debugging docs.

9 years agoCleanup: delete comments that were accidentally copy-pasted and are incorrect for... 1665/head
Ingo Bürk [Sun, 19 Apr 2015 08:47:33 +0000 (10:47 +0200)]
Cleanup: delete comments that were accidentally copy-pasted and are incorrect for these test cases

9 years agoSmall cleanups:
Ingo Bürk [Sun, 19 Apr 2015 08:47:09 +0000 (10:47 +0200)]
Small cleanups:
* Implement criterion specs just like it is done in the spec for the config
* Declare variables in test case early so the 'my' keyword can be dropped in the actual test cases

9 years agoAdded testcase for 'window_type' criterion when used as a command.
Ingo Bürk [Sat, 18 Apr 2015 22:37:10 +0000 (00:37 +0200)]
Added testcase for 'window_type' criterion when used as a command.