Michael Stapelberg
e215fd43c0
i3bar-protocol: update example, reword separator{,_block_width}
2013-02-18 10:51:52 +01:00
Artem Shinkarov
5f05ca6b5d
Separator color via config; separator width and on/off via ipc
...
This patch adds the following features:
1) Configure a color of the separator via config. It is done like
bar {
colors {
separator #000000
}
}
2) A block can have an integer entry "separator_block_width" which
sets the width of the gap which would follow after the current block.
3) A block can have a boolean entry "separator" and if it is set
to false, then the drawing of the separating line would be disabled.
2013-02-18 10:44:44 +01:00
Michael Stapelberg
a52b1b4bb0
inline comments for enum values
2013-02-18 10:41:34 +01:00
Sebastian Ullrich
49979c9d15
Always auto center on 'scratchpad show' if window hasn't been repositioned by the user
...
This change ensures a scratchpad window is still centered on the screen
if it has first been shown on another screen of a different
resolution. Moving or resizing the scratchpad manually disables this
behavior.
2013-02-18 10:38:28 +01:00
Michael Stapelberg
7f0065e1b1
tests: unset $ENV{SHELL} to avoid breakage with fish (Thanks dRbiG)
2013-02-15 16:41:28 +01:00
Mats
fa4301e06d
Split workspace instead of changing orientation
...
Move all children of the workspace into a new container if there is more
than one otherwise simply change the orientation.
fixes #922
2013-02-15 03:16:02 +01:00
Michael Stapelberg
1e3075e69b
userguide: remove obsolete sentence about client.background (Thanks Tucos)
2013-02-14 20:47:41 +01:00
oblique
e92dd1acc6
Obey WM_SIZE_HINTS's resize increments in floating
2013-02-14 19:38:26 +01:00
oblique
b0e2be9a6b
Add render_deco_height()
2013-02-14 19:37:52 +01:00
Sebastian Rachuj
b565bfca13
Bugfix: Do not move focus if a container is moved across outputs
...
fixes #809
This makes the moving behavior more consistent. If you want to focus the
workspace you are moving to, just chain the keybinding in your config
file:
bindsym $mod+Shift+1 move workspace 1; workspace 1
2013-02-10 17:38:17 +01:00
Michael Stapelberg
d36e2a70bf
hacking-howto: refer people to cr.i3wm.org
2013-02-10 15:10:13 +01:00
Michael Stapelberg
a1774e78fc
i3test: fix get_focused() docs (Thanks knopwob)
2013-02-07 15:57:15 +01:00
Michael Stapelberg
be287876d6
userguide: be explicit about assignment processing order (Thanks Donald)
2013-02-07 15:49:35 +01:00
Michael Stapelberg
2bf80528bd
i3-nagbar: kludge to run the command shell script when inside a noexec mount
...
See the comment inside the commit for more information on how this
works.
fixes #947
2013-02-07 15:30:40 +01:00
Sascha Kruse
0a0d66dc8a
put common part of error messages into variable
...
This makes future changes easier when new tokens are added to the
parser.
2013-02-01 11:50:52 +01:00
Mats
23078f6ded
i3-dmenu-desktop: List filenames of .desktop files
...
In addition to 'name' and 'command', add a third entry type 'filename'
to list the filenames of the .desktop files (e.g., 'firefox.desktop'
would be display as 'firefox').
Command line option '--entry-type' can be specified multiple times.
fixes #930
2013-01-30 13:39:49 +01:00
Sascha Kruse
bbede97966
scratchpad_show focus unfocused scratchpad window
...
When there's an unfocused scratchpad window on the current workspace
scratchpad_show will focus that scratchpad window.
2013-01-30 13:33:55 +01:00
Michael Stapelberg
03693bf0cc
add testcase for "move workspace <output>"
2013-01-30 13:31:20 +01:00
Michael Stapelberg
fcdfab4d28
Merge branch 'master' into next
2013-01-30 13:30:59 +01:00
Michael Stapelberg
29c027db3b
Merge branch 'fix-move-ws'
2013-01-30 13:30:59 +01:00
Steven Allen
cf830f69a2
Bugfix: Correctly parse `move ... workspace *_on_output`
...
The parse spec for `move ... workspace ...` ordered next/prev before
next_on_output/prev_on_output causing the parser to match next/prev
before next_on_output/prev_on_output.
Ticket: http://bugs.i3wm.org/report/ticket/941
2013-01-30 13:30:54 +01:00
Michael Stapelberg
3e59a8c949
Merge branch 'master' into next
2013-01-27 20:20:53 +01:00
Michael Stapelberg
aede5600aa
Merge branch 'userguide-resize'
2013-01-27 20:20:53 +01:00
Michael Stapelberg
8b97a5e159
userguide: be more clear about the resize command arguments (Thanks Tucos)
2013-01-27 20:20:37 +01:00
Marius Muja
b1cc4d5166
Fix decoration rect size for windows without border
2013-01-26 19:31:15 +01:00
Vivien Didelot
1d22fe42f2
split main .gitignore and ignore more files
...
This patch splits the main .gitignore with a specific
testcases/.gitignore and also add 4 patterns to the ignore list:
i3-command-parser.stamp
i3-config-parser.stamp
testcases/-
testcases/i3-cfg-for-*
2013-01-26 19:30:10 +01:00
Michael Stapelberg
4796a61c31
add testcase for "move to output" wrapping
2013-01-26 19:28:11 +01:00
Francesco Mazzoli
f13d8ed06f
wrap when moving things to outputs with direction
2013-01-26 19:27:58 +01:00
Francesco Mazzoli
3cd4b8c111
update tests to test the output wrapping
2013-01-26 19:08:41 +01:00
Michael Stapelberg
c300d216ec
i3-msg: parse command replies and display errors nicely if there were errors
...
fixes #737
2013-01-26 17:56:43 +01:00
Michael Stapelberg
62b0df0640
Make i3-nagbar use the same font as configured for i3
2013-01-26 09:55:38 +01:00
Adrien Schildknecht
76ef3a4ab8
remove the urgency indicator when a window is closed
2013-01-25 18:53:59 +01:00
Michael Stapelberg
74558bb33d
Call scratchpad_show() when focusing scratchpad windows via criteria
...
fixes #931
2013-01-25 16:11:20 +01:00
Michael Stapelberg
d426f1570b
Merge branch 'fix-scratchpad-reconf'
2013-01-25 15:48:38 +01:00
Michael Stapelberg
2ea94420d3
Merge branch 'master' into next
2013-01-25 15:48:38 +01:00
Michael Stapelberg
7be5ece663
Bugfix: fix coordinates of scratchpad windows on output changes (Thanks badboy)
...
Previously, after reconfiguring monitors, scratchpad windows could still
be focused but might be out of bounds for you to see.
fixes #929
2013-01-25 15:47:43 +01:00
Michael Stapelberg
a32d2d5d61
scratchpad: fix crash when moving last window of an invisible workspace (+test) (Thanks bafain)
...
It looks like the code which was removed with this commit was not
necessary anyways since con_move_to_workspace() by now checks on its own
whether it moves to the scratchpad.
fixes #913
2013-01-25 15:28:58 +01:00
Michael Stapelberg
f767ac30b3
fix two more crashes when disabling an empty output
2013-01-25 14:53:15 +01:00
Michael Stapelberg
e0cfe1f8c0
Bugfix: fix crash when disabling output without any windows (Thanks xeen, knopwob)
...
fixes #919
2013-01-25 14:14:06 +01:00
Michael Stapelberg
8f4456a14a
Merge branch 'fix-workspace-ws'
2013-01-25 13:56:26 +01:00
Michael Stapelberg
c2061042e1
Merge branch 'master' into next
2013-01-25 13:56:26 +01:00
Michael Stapelberg
8bc771ac16
Bugfix: parse outputs as "word", not "string", to ignore trailing whitespace (Thanks leifarne)
...
fixes #921
2013-01-25 13:55:26 +01:00
Michael Stapelberg
fc3b0db7a5
i3bar: fix rendering positions
2013-01-24 17:21:34 +01:00
Michael Stapelberg
990a1ca4c2
i3bar: don’t use X11 borders to avoid overlapping in hide mode
...
fixes #923
2013-01-24 16:09:51 +01:00
Michael Stapelberg
70067c72d5
Merge branch 'fix-key-release'
2013-01-24 14:45:14 +01:00
Michael Stapelberg
a5c9b0dedb
Merge branch 'master' into next
2013-01-24 14:45:14 +01:00
Michael Stapelberg
2eb4ed95bc
Bugfix: fix “overlapping” --release key bindings (Thanks phlux)
...
We eagerly marked all KeyRelease bindings as eligible to match without
checking modifiers, while this should only be allowed for the key
binding which actually was pressed.
fixes #915
2013-01-24 14:44:01 +01:00
Michael Stapelberg
28933f8de3
i3-input: set focus before sending the command (Thanks emias)
...
This avoids problems with sending 'focus left' or other commands which
manipulate focus.
2013-01-24 13:57:08 +01:00
Marius Muja
bfd150872d
Fixing continuous resize bug in floating mode
...
fixes #910
2013-01-24 12:42:13 +01:00
David Edmondson
3365b52384
Allow servers which do not support the XKB extension.
...
If we can open the X display but the XKB extension is not available,
continue without it.
2013-01-23 20:27:27 +01:00