livanh
7b59da8a4f
Implement 'resize set <width> ppt <height> ppt' command for tiling windows ( #3036 )
2018-01-08 23:25:08 +01:00
clonejo
eb679bfabd
Docs: state that pango markup requires the use of a pango font.
2017-12-27 17:41:55 +01:00
Pallav Agarwal
161db6f17d
Add relative coordinates in JSON for i3bar click events ( fixes #2767 )
...
Add support for relative coordinates in i3bar click events
Rename {x,y}_rel to relative_{x,y}
Update i3bar-protocol doc to mention the added fields in click events
2017-12-20 22:51:14 +05:30
Orestis Floros
994a479558
userguide: mention <criteria> in focus
2017-12-11 19:14:33 +02:00
Orestis Floros
315ff17563
Add '--release' flag for bindsym in the bar block
...
i3bar's handle_button is modified to also handle XCB_BUTTON_RELEASE
events. During these button release events, only custom commands are
checked to avoid sending multiple workspace ipc messages.
The way this patch is implemented will allow to assign a custom command
for both the press and release of the same button:
bar {
...
bindsym buttonX exec command1
bindsym --release buttonX exec command2
}
Fixes #3068 .
2017-12-08 12:16:22 +02:00
Daniel Mueller
3a22c6e765
docs/userguide: Correct mark/goto i3-input commands
...
The userguide still mentions an old 'goto' command which no longer
exists and will be ignored silently (when used in the i3 config) or
causes an error to be reported (when invoked from the command line).
This change updates the userguide to correct this problem. In addition
to that it also updates the i3-input command shown to no longer use the
deprecated -p flag but -F instead.
2017-11-11 17:06:43 -08:00
Orestis Floros
b17e7b82c6
Add support to resize floating container in percentage
...
resize set is modified to accept both 'px' and 'ppt' height and width.
Fixes #2816 .
2017-10-18 02:07:11 +03:00
Michael Stapelberg
906a88e92b
docs: full-size, so-called ( #3019 )
...
As per Michael Siegel, who studied the English language :).
2017-10-15 14:22:41 +02:00
Michael Stapelberg
4f03e49c3a
userguide: explain why Mod4 is usually preferred ( #3018 )
2017-10-15 12:17:22 +02:00
Michael Stapelberg
44a6efb5b0
tests: run under Xvfb by default (if available) ( #2951 )
...
This shaves off two seconds of wall-clock time (10s → 8s).
2017-10-13 00:18:49 -07:00
Michael Stapelberg
ce21de8dde
Implement the tick event
...
This makes our tests less flaky, shorter, and more readable.
fixes #2988
2017-09-30 11:41:57 +02:00
Michael Stapelberg
c08ef36199
docs/ipc: include new Go package, reference example byteorder code ( #3000 )
2017-09-29 14:02:18 -07:00
Michael Stapelberg
54d61b510d
Merge pull request #2953 from CyberShadow/focus_wrapping
...
Add "focus_wrapping" option
2017-09-27 09:31:39 -07:00
Vladimir Panteleev
50edf495aa
Merge "force_focus_wrapping" option into "focus_wrapping force"
...
Allow enabling forced focus wrapping by specifying "focus_wrapping
force" in i3's configuration. This syntax supersedes the previous
"force_focus_wrapping yes" one, which remains available for backwards
compatibility.
2017-09-25 18:58:12 +00:00
Michael Stapelberg
362cbe6c5f
docs/ipc: document the GET_CONFIG request ( #2984 )
...
This was neglected in commit a6d8ed9b1a
related to #2856
2017-09-24 17:25:41 +02:00
Michael Stapelberg
d968d39b27
Replace http:// with https:// where applicable
...
The testcases will be updated automatically in a separate commit.
2017-09-24 10:19:07 +02:00
Vladimir Panteleev
28f7e14650
Add "focus_wrapping" option
...
Fixes #2352 .
2017-09-22 23:40:41 +00:00
Ingo Bürk
dd13cae5c0
Merge pull request #2959 from orestisf1993/issue-2764
...
Allow assign to output
2017-09-22 16:24:26 +02:00
Vladimir Panteleev
536f60e230
docs/userguide: Update description of focus wrapping
...
Focus wrapping applies to all kinds of containers, not just
tabbed/stacked ones.
2017-09-21 15:32:44 +00:00
Michael Stapelberg
8e5731bde8
ipc: document how to detect i3’s byte order in memory-safe languages ( #2961 )
...
related to issue #2958
2017-09-18 17:15:28 +02:00
Michael Stapelberg
39415fe16d
docs/ipc: "urgent": complete the list of container types ( #2967 )
...
Thanks chressie!
2017-09-18 16:36:34 +02:00
Michael Stapelberg
607e97e651
ipc: rename COMMAND to RUN_COMMAND for consistency ( #2956 )
...
All other message types are verbs, only our first-ever message COMMAND wasn’t.
While we’re here, also change the message type dictionary into a table with
clickable links to the corresponding reply type.
Authors of downstream IPC libraries are encouraged to keep the old name around
so as to not break existing code, but mark it as deprecated.
2017-09-17 15:25:00 +02:00
Orestis Floros
a35854ddf4
Allow assign to output
...
Implements the "assign" part of issue #2764 .
2017-09-17 15:37:17 +03:00
Orestis Floros
45d1e51857
Fix userguide formatting error
2017-09-17 15:37:17 +03:00
Michael Stapelberg
5062dd61bc
ipc: tree reply: document focus, nodes and floating_nodes ( #2955 )
...
These haven’t ever changed, but were only included in the example, not in the
list, so people might not have realized that these are safe for use.
2017-09-16 17:28:44 +02:00
Ingo Bürk
8cad1c1fa6
Merge pull request #2887 from orestisf1993/next
...
Allow assign to workspace by number
2017-09-15 21:26:35 +02:00
Orestis Floros
eaf7a49e28
Allow assign to workspace by number
...
Makes "assign [<criteria>] workspace number <number>" work in the same
manner as "move to workspace number <number>" instead of assigning the
window to a workspace named "number <number>".
config.spec is modified to expect a 'number' string and an extra
argument is used in cfg_assign.
For workspaces that don't exist yet, workspace_get is used as a
fallback. This also allows the user to assign to "<number> <workspace>"
eg "2: work" and the full name will be used if workspace number 2
doesn't exist yet.
Fixes #2590 .
2017-09-15 03:38:13 +03:00
Michael Stapelberg
44e4ad52f6
Merge pull request #2920 from CyberShadow/monitor-output-names
...
Consider RandR 1.5's monitors' output names in addition to monitor names
2017-09-13 10:58:38 +02:00
Vladimir Panteleev
3b75be1334
docs/userguide: Document that i3 can accept RandR output names
2017-09-13 08:23:27 +00:00
Michael Stapelberg
48fbb3e9ef
testsuite: install Module::Install so that AnyEvent-I3/Makefile.PL works ( #2940 )
...
As per https://perlmaven.com/cant-locate-inc-module-install-in-inc , the inc/
directory should not be under version control.
fixes #2914
2017-09-12 22:16:36 +02:00
Orestis
bcaec96414
Fix userguide bug ( #2932 )
...
Fixes #2931
2017-09-11 21:31:29 +02:00
Vladimir Panteleev
7116bbaa12
docs/hacking-howto: Update section topology
...
- Promote the "How to build?" sub-section to a top-level
section ("Building i3")
- Convert the "Introduction" sub-section as the intro to the remaining
contents of the "Using git / sending patches" section
- Keep "Which branch to use?" as a level-3 sub-section, thus making it
a sub-section of what used to be the "Introduction" sub-section.
2017-09-11 13:16:44 +00:00
Vladimir Panteleev
e799bda2da
docs/hacking-howto: Promote "How to build?" sub-section
...
Move the "How to build?" sub-section to the top of its parent section.
2017-09-11 13:16:34 +00:00
Vladimir Panteleev
5c693ec2ae
docs/hacking-howto: Promote "Using git / sending patches" section
...
Move the contents of the "Using git / sending patches" section to the
top of the document.
2017-09-11 13:04:58 +00:00
Vladimir Panteleev
828c759489
docs/testsuite: Correct Xephyr package name on Arch Linux ( #2913 )
...
The package is called `xorg-server-xephyr`, not `xorg-xserver-xephyr`.
2017-09-10 13:02:10 +02:00
Chih-Chyuan Hwang
044f03d5c7
Update doc for dependency Module::Install ( #2877 )
...
After moving to AnyEvent-I3, a new testsuite dependency is introduced: Module::Install.
Update the doc for this.
See the issue #2876 .
2017-08-28 09:43:42 +02:00
Johannes Lange
1b0c9958d0
docs markup fixes
2017-08-26 11:22:34 +02:00
Trevor Merrifield
a805676197
Document missing case of workspace event
...
The docs are missing the "move" workspace event emitted from
workspace.c's workspace_move_to_output function.
2017-07-30 01:14:07 -04:00
Trevor Merrifield
6a8a4266f3
Add missing newline to end of file
2017-07-30 00:59:53 -04:00
hwangcc23
e63070607f
Add compilation instructions to the hacking howto
2017-06-03 23:21:42 +08:00
Armaël Guéneau
b2ee718f56
Add a link to the ocaml-i3ipc library
2017-05-31 16:53:33 +02:00
hwangcc23
bbfdcfddfe
Update testsuite docs
...
After moved to autotools, the method to run the i3 testsuite is changed.
Update the testsuite document to reflect the change.
2017-05-21 23:08:27 +08:00
lasers
e4c2eb12ae
docs/ipc: Fix typo
2017-05-17 18:48:56 -05:00
Ingo Bürk
aa8556abfc
Merge pull request #2761 from mdirkse/next
...
[WIP] Change golang ipc lib reference to one that is maintained.
2017-05-17 10:39:42 +02:00
Ingo Bürk
7b6f592b71
Merge pull request #2771 from hwangcc23/fix-2764
...
Support to get the primary output
2017-05-16 18:39:37 +02:00
hwangcc23
f99727b518
Support to get the primary output
...
This makes `primary` output available for assign or move commands.
Fix the issue #2764(https://github.com/i3/i3/issues/2764 ).
2017-05-16 23:06:12 +08:00
Michael Stapelberg
6dd4252cd5
Merge pull request #2496 from Airblader/feature-917
...
Implement 'swap' command.
2017-05-15 21:35:10 +02:00
Ingo Bürk
5f9a5e8d7d
Implement 'swap' command.
...
This patch introduces a new command 'swap' that swaps two containers so
that they assume each other's position and geometry.
fixes #917
2017-05-15 21:06:38 +02:00
Ingo Bürk
b56cb84e16
Added a hint about the required config v4 version hint. ( #2759 )
...
fixes #2751
2017-05-04 23:08:51 +02:00
Maarten Dirkse
e428bf02fb
Fix invalid JSON
2017-05-04 00:36:44 +02:00