--- i3-wm-3.e-bf1.orig/i3.config +++ i3-wm-3.e-bf1/i3.config @@ -101,7 +101,7 @@ bind Mod1+Shift+19 m10 # Mod1+Enter starts a new terminal -bind Mod1+36 exec /usr/bin/urxvt +bind Mod1+36 exec /usr/bin/x-terminal-emulator # Mod1+Shift+q kills the current client bind Mod1+Shift+24 kill --- i3-wm-3.e-bf1.orig/debian/compat +++ i3-wm-3.e-bf1/debian/compat @@ -0,0 +1 @@ +6 --- i3-wm-3.e-bf1.orig/debian/i3-wm.docs +++ i3-wm-3.e-bf1/debian/i3-wm.docs @@ -0,0 +1,16 @@ +docs/debugging.html +docs/hacking-howto.html +docs/userguide.html +docs/bigpicture.png +docs/single_terminal.png +docs/snapping.png +docs/two_columns.png +docs/two_terminals.png +docs/modes.png +docs/stacklimit.png +docs/ipc.html +docs/multi-monitor.html +docs/wsbar.html +docs/wsbar.png +docs/keyboard-layer1.png +docs/keyboard-layer2.png --- i3-wm-3.e-bf1.orig/debian/control +++ i3-wm-3.e-bf1/debian/control @@ -0,0 +1,46 @@ +Source: i3-wm +Section: utils +Priority: extra +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Michael Stapelberg +DM-Upload-Allowed: yes +Build-Depends: debhelper (>= 6), libx11-dev, libxcb-aux0-dev (>= 0.3.3), libxcb-keysyms1-dev, libxcb-xinerama0-dev (>= 1.1), libxcb-randr0-dev, libxcb-event1-dev (>= 0.3.3), libxcb-property1-dev (>= 0.3.3), libxcb-atom1-dev (>= 0.3.3), libxcb-icccm1-dev (>= 0.3.3), asciidoc (>= 8.4.4), xmlto, docbook-xml, pkg-config, libev-dev, flex, bison, libyajl-dev, perl +Standards-Version: 3.9.1 +Homepage: http://i3.zekjur.net/ + +Package: i3 +Architecture: any +Section: x11 +Depends: i3-wm, ${misc:Depends} +Recommends: i3lock, suckless-tools, i3status +Description: metapackage (i3 window manager, screen locker, menu, statusbar) + This metapackage installs the i3 window manager (i3-wm), the i3lock screen + locker (slightly improved version of slock), suckless-tools which contains dmenu + and i3status, which displays useful information about your system in + combination with dzen2. These are all the tools you need to use the i3 window + manager efficiently. + +Package: i3-wm +Architecture: any +Section: x11 +Depends: ${shlibs:Depends}, ${misc:Depends}, x11-utils +Provides: x-window-manager +Suggests: rxvt-unicode | x-terminal-emulator +Recommends: xfonts-base, libanyevent-i3-perl, libanyevent-perl, libipc-run-perl +Description: an improved dynamic tiling window manager + Key features of i3 are good support of multi-monitor setups (workspaces are + assigned to virtual screens, i3 does the right thing when attaching new + monitors), XRandR support, horizontal and vertical columns (think of a table) + in tiling. Also, special focus is on writing clean, readable and well + documented code. i3 uses XCB for asynchronous communication with X11, and has + several measures to be very fast. + . + Please be aware i3 is primarily targeted at advanced users and developers. + +Package: i3-wm-dbg +Architecture: any +Section: debug +Depends: i3-wm (=${binary:Version}), ${misc:Depends} +Description: Debugging symbols for the i3 window manager + Debugging symbols for the i3 window manager. Please install this to produce + useful backtraces before creating new tickets. --- i3-wm-3.e-bf1.orig/debian/copyright +++ i3-wm-3.e-bf1/debian/copyright @@ -0,0 +1,30 @@ +This Debian package is based on a tarball downloaded from +http://i3.zekjur.net + +Copyright: (C) 2009 Michael Stapelberg +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, this + list of conditions and the following disclaimer in the documentation and/or other + materials provided with the distribution. + +* Neither the name of Michael Stapelberg, wiipdf nor the names of its contributors + may be used to endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT +SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. --- i3-wm-3.e-bf1.orig/debian/rules +++ i3-wm-3.e-bf1/debian/rules @@ -0,0 +1,77 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +config.status: configure + dh_testdir + touch $@ + +build: + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + $(MAKE) -C man + $(MAKE) -C docs + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build + + # Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/i3-wm + $(MAKE) DESTDIR=$(CURDIR)/debian/i3-wm/ install + mkdir -p $(CURDIR)/debian/i3-wm/usr/share/man/man1 + cp man/i3.1 $(CURDIR)/debian/i3-wm/usr/share/man/man1 + cp man/i3-msg.1 $(CURDIR)/debian/i3-wm/usr/share/man/man1 + cp man/i3-input.1 $(CURDIR)/debian/i3-wm/usr/share/man/man1 + cp man/i3-wsbar.1 $(CURDIR)/debian/i3-wm/usr/share/man/man1 + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_installdebconf + dh_installinit + dh_installman + dh_installwm + dh_link + dh_strip --dbg-package=i3-wm-dbg + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- i3-wm-3.e-bf1.orig/debian/i3-wm.wm +++ i3-wm-3.e-bf1/debian/i3-wm.wm @@ -0,0 +1 @@ +/usr/bin/i3 --- i3-wm-3.e-bf1.orig/debian/i3-wm.doc-base +++ i3-wm-3.e-bf1/debian/i3-wm.doc-base @@ -0,0 +1,10 @@ +Document: i3-wm +Title: i3 documentation +Author: Michael Stapelberg +Abstract: The documentation explains how to use and modify the i3 window + manager. +Section: Window Managers + +Format: HTML +Files: /usr/share/doc/i3-wm/*.html +Index: /usr/share/doc/i3-wm/userguide.html --- i3-wm-3.e-bf1.orig/debian/watch +++ i3-wm-3.e-bf1/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://i3.zekjur.net/downloads/ /downloads/i3-(.*)\.tar\.bz2 --- i3-wm-3.e-bf1.orig/debian/changelog +++ i3-wm-3.e-bf1/debian/changelog @@ -0,0 +1,293 @@ +i3-wm (3.e-bf1-3ubuntu1) natty; urgency=low + + * Modify Recommends: for dwm-tools -> suckless-tools transition. + + -- Bilal Akhtar Thu, 16 Dec 2010 09:25:47 +0300 + +i3-wm (3.e-bf1-3) unstable; urgency=low + + * include keyboard-layer{1,2}.png in docs (Closes: #595295) + + -- Michael Stapelberg Wed, 03 Nov 2010 20:32:42 +0100 + +i3-wm (3.e-bf1-2) unstable; urgency=low + + * debian: call dh_installwm to register as alternative for x-window-manager + + -- Michael Stapelberg Wed, 23 Jun 2010 18:23:10 +0200 + +i3-wm (3.e-bf1-1) unstable; urgency=low + + * Bugfix: Correctly initialize workspaces if RandR is not available + * Bugfix: Correctly handle asprintf() return value + * Bugfix: Update _NET_WM_STATE when clients request changes via ClientMessage + * Bugfix: Don’t invert directions when resizing floating clients (top/left) + * Bugfix: Don’t leak file descriptors + + -- Michael Stapelberg Wed, 09 Jun 2010 09:51:10 +0200 + +i3-wm (3.e-3) unstable; urgency=low + + * Bump debian policy version + * Add Recommends: libanyevent-i3-perl, libanyevent-perl, libipc-run-perl + which are necessary to use i3-wsbar (which is not core functionality, + thus no Depends:) (Closes: #577287) + + -- Michael Stapelberg Sat, 24 Apr 2010 11:20:19 +0200 + +i3-wm (3.e-2) unstable; urgency=low + + * Use x-terminal-emulator instead of hard-coded urxvt + + -- Michael Stapelberg Sun, 04 Apr 2010 19:30:46 +0200 + +i3-wm (3.e-1) unstable; urgency=low + + * Implement RandR instead of Xinerama + * Obey the XDG Base Directory Specification for config file paths + * lexer/parser: proper error messages + * Add new options -V for verbose mode and -d for debug log levels + * Implement resize command for floating clients + * Include date of the last commit in version string + * Fixed cursor orientation when resizing + * Added focus_follows_mouse config option + * Feature: Cycle through workspaces + * Fix bindings using the cursor keys in default config + * added popup for handling SIGSEGV or SIGFPE + * Correctly exit when another window manager is already running + * Take into account the window’s base_{width,height} when resizing + * Disable XKB instead of quitting with an error + * Make containers containing exactly one window behave like default containers + * Also warp the pointer when moving a window to a another visible workspace + * work around clients setting 0xFFFF as resize increments + * Move autostart after creating the IPC socket in start process + * Restore geometry of all windows before exiting/restarting + * When in fullscreen mode, focus whole screens instead of denying to focus + * draw consistent borders for each frame in a tabbed/stacked container + * Update fullscreen client position/size when an output changes + * i3-input: Bugfix: repeatedly grab the keyboard if it does not succeed + * put windows with WM_CLIENT_LEADER on the workspace of their leader + * use real functions instead of nested functions (enables compilation with + llvm-clang) + * implement screen-spanning fullscreen mode + * floating resize now uses arbitrary corners + * floating resize now works proportionally when pressing shift + * Don’t use SYNC key bindings for mode_switch but re-grab keys + * support PREFIX and SYSCONFDIR in Makefile + * make pointer follow the focus when moving to a different screen also for + floating clients + * start dock clients on the output they request to be started on according + to their geometry + * handle destroy notify events like unmap notify events + * ewmh: correctly set _NET_CURRENT_DESKTOP to the number of the active + workspace + * ewmh: correctly set _NET_ACTIVE_WINDOW + * ewmh: implement support for _NET_WORKAREA (rdesktop can use that) + * default ipc-socket path is now ~/.i3/ipc.sock, enabled in the default config + * Bugfix: Containers could lose their snap state + * Bugfix: Use ev_loop_new to not block SIGCHLD + * Bugfix: if a font provides no per-char info for width, fall back to default + * Bugfix: lexer: return to INITIAL state after floating_modifier + * Bugfix: Don’t leak IPC socket to launched processes + * Bugfix: Use both parts of WM_CLASS (it contains instance and class) + * Bugfix: Correctly do boundary checking/moving to other workspaces when + moving floating clients via keyboard + * Bugfix: checked for wrong flag in size hints + * Bugfix: Correctly render workspace names containing some non-ascii chars + * Bugfix: Correctly position floating windows sending configure requests + * Bugfix: Don’t remap stack windows errnously when changing workspaces + * Bugfix: configure floating windows above tiling windows when moving them + to another workspace + * Bugfix: Take window out of fullscreen mode before entering floating mode + * Bugfix: Don’t enter BIND_A2WS_COND state too early + * Bugfix: only restore focus if the workspace is focused, not if it is visible + * Bugfix: numlock state will now be filtered in i3-input and signal handler + * Bugfix: Don’t unmap windows when current workspace gets reassigned + * Bugfix: correctly translate coordinates for floating windows when outputs + change + * Bugfix: Correctly switch workspace when using the "jump" command + * Bugfix: Fix rendering of workspace names after "reload" + * Bugfix: Correctly ignore clicks when in fullscreen mode + * Bugfix: Don’t allow fullscreen floating windows to be moved + * Bugfix: Don’t render containers which are not visible on hint changes + * Some memory leaks/invalid accesses have been fixed + + -- Michael Stapelberg Tue, 30 Mar 2010 13:11:50 +0200 + +i3-wm (3.d-bf1-1) unstable; urgency=low + + * Bugfix: Don’t draw window title when titlebar is disabled + * Bugfix: Correctly switch border types for floating windows + * Bugfix: Correctly replay pointer if the click handler does not trigger + * Bugfix: Also allow WORDs as workspace names + * Bugfix: Correctly clear the urgency hint if a window gets unmapped without + clearing it + * Bugfix: Fix resizing of floating windows in borderless/1-px-border mode + * Bugfix: Accept underscores in bindsym + * Bugfix: Don’t set the urgency flag if the window is focused + * Bugfix: Handle stack-limit cols on tabbed containers + * Bugfix: Resize client after updating base_width/base_height + * Bugfix: Force render containers after setting the client active + * Bugfix: Fix two problems in resizing floating windows with right mouse + * Bugfix: Use more precise floating point arithmetics + * Bugfix: Correctly place new windows below fullscreen windows + + -- Michael Stapelberg Mon, 21 Dec 2009 22:33:02 +0100 + +i3-wm (3.d-2) unstable; urgency=low + + * debian: register in doc-base + * debian: add watchfile + * debian: remove unnecessary priority-field from binary packages + * debian: add missing images to documentation + + -- Michael Stapelberg Mon, 23 Nov 2009 21:56:04 +0100 + +i3-wm (3.d-1) unstable; urgency=low + + * Implement tabbing (command "T") + * Implement horizontal resize of containers (containers! not windows) + * Implement the urgency hint for windows/workspaces + * Implement vim-like marks (mark/goto command) + * Implement stack-limit for further defining how stack windows should look + * Implement modes which allow you to use a different set of keybindings + when inside a specific mode + * Implement changing the default mode of containers + * Implement long options (--version, --no-autostart, --help, --config) + * Implement 'bt' to toggle between the different border styles + * Implement an option to specify the default border style + * Use a yacc/lex parser/lexer for the configuration file + * The number of workspaces is now dynamic instead of limited to 10 + * Floating windows (and tiled containers) can now be resized using + floating_modifier and right mouse button + * Dock windows can now reconfigure their height + * Bugfix: Correctly handle multiple messages on the IPC socket + * Bugfix: Correctly use base_width, base_height and size increment hints + * Bugfix: Correctly send fake configure_notify events + * Bugfix: Don’t crash if the numlock symbol cannot be found + * Bugfix: Don’t display a colon after unnamed workspaces + * Bugfix: If the pointer is outside of the screen when starting, fall back to + the first screen. + * Bugfix: Initialize screens correctly when not using Xinerama + * Bugfix: Correctly handle unmap_notify events when resizing + * Bugfix: Correctly warp pointer after rendering the layout + * Bugfix: Fix NULL pointer dereference when reconfiguring screens + * Explicitly specify -lxcb when linking (Closes: #554860) + + -- Michael Stapelberg Mon, 09 Nov 2009 20:53:43 +0100 + +i3-wm (3.c-2) unstable; urgency=low + + * Fix FTBFS on GNU/kFreeBSD and possibly GNU/Hurd (Closes: #542877) + * Add manpage for i3-msg + + -- Michael Stapelberg Mon, 24 Aug 2009 12:23:18 +0200 + +i3-wm (3.c-1) unstable; urgency=low + + * Implement a reload command + * Implement keysymbols in configuration file + * Implement assignments of workspaces to screens + * Implement named workspaces + * Implement borderless/1-px-border windows + * Implement command to focus screens + * Implement IPC via unix sockets + * Correctly render decoration of floating windows + * Map floating windows requesting (0x0) to center of their leader/workspace + * Optimization: Render stack windows on pixmaps to reduce flickering + * Optimization: Directly position new windows to their final position + * Bugfix: Repeatedly try to find screens if none are available + * Bugfix: Correctly redecorate clients when changing focus + * Bugfix: Don’t crash when clients reconfigure themselves + * Bugfix: Fix screen wrapping + * Bugfix: Fix selecting a different screen with your mouse when not having + any windows on the current workspace + * Bugfix: Correctly unmap stack windows and don’t re-map them too early + * Bugfix: Allow switching layout if there are no clients in the this container + * Bugfix: Set WM_STATE_WITHDRAWN when unmapping, unmap windows when + destroying + * Bugfix: Don’t hide assigned clients to inactive but visible workspaces + + -- Michael Stapelberg Wed, 19 Aug 2009 13:07:58 +0200 + +i3-wm (3.b-1) unstable; urgency=low + + * Bugfix: Correctly handle col-/rowspanned containers when setting focus. + * Bugfix: Correctly handle col-/rowspanned containers when snapping. + * Bugfix: Force reconfiguration of all windows on workspaces which are + re-assigned because a screen was detached. + * Bugfix: Several bugs in resizing table columns fixed. + * Bugfix: Resizing should now work correctly in all cases. + * Bugfix: Correctly re-assign dock windows when workspace is destroyed. + * Bugfix: Correctly handle Mode_switch modifier. + * Bugfix: Don't raise clients in fullscreen mode. + * Bugfix: Re-assign dock windows to different workspaces when a workspace + is detached. + * Bugfix: Fix crash because of workspace-pointer which did not get updated + * Bugfix: Correctly initialize screen when Xinerama is disabled. + * Bugfix: Fullscreen window movement and focus problems fixed + * Implement jumping to other windows by specifying their position or + window class/title. + * Implement jumping back by using the focus stack. + * Implement autostart (exec-command in configuration file). + * Implement floating. + * Implement automatically assigning clients on specific workspaces. + * Implement variables in configfile. + * Colors are now configurable. + + -- Michael Stapelberg Fri, 26 Jun 2009 04:42:23 +0200 + +i3-wm (3.a-bf2-1) unstable; urgency=low + + * Bugfix: Don't crash when setting focus + * Bugfix: Reconfigure bar window when changing resolutions + + -- Michael Stapelberg Sun, 03 May 2009 23:02:24 +0200 + +i3-wm (3.a-bf1-1) unstable; urgency=low + + * Bugfix: When entering a stack window with the mouse, set focus to the + active client in the container the stack window belongs to. + * Bugfix: Correctly filter out the numlock bit. This fixes i3 not reacting + to any keybindings after pressing numlock once. + * Bugfix: Don't crash when Xinerama is disabled. + * Bugfix: Correctly remove client from container when moving to another + workspace. + * Bugfix: Set focus to the client which was previously focused instead of + the next client in container when moving windows out of a container. + * Bugfix: Correctly set focus when switching between screens. + * Bugfix: Don't crash anymore moving focus to another screen under the + following conditions: The screen you switch to has a lower number of cells + and/or rows than the current one, you switch focus using your mouse, you + previously were in a column/row which is not available on the destination + screen. + * Bugfix: When switching screens, warp the pointer to the correct + destination window. + * Bugfix: Store dock clients per screen, not per workspace. + * Bugfix: Perform bounds checking for snapped containers. + * Bugfix: Send clients their absolute position/size (on the root window) in + generated configure events. This fixes problems with xfontsel, xmaple, + etc. + * Bugfix: Correctly update state when moving fullscreen windows across + workspaces. + * Bugfix: Correctly restart i3 when not using its absolute path + * Bugfix: Drag & Drop in GTK applications works now + * Bugfix: Don't hide non-managed windows (libnotify-popups for example) + when raising clients in stacked containers. + * Bugfix: Correctly restore focus when leaving fullscreen mode + * Bugfix: Re-distribute free space when closing customly resized containers, + re-evaluate for other containers + * Bugfix: When moving windows into different containers, insert them at the + correct position. + * Bugfix: Correctly set focus when moving windows into other containers + * Implement scrolling on stack windows and on the bottom bar. + * Create i3-wm-dbg with debug symbols + * Don't rely on libxcb-wm any longer, as it got removed in libxcb 0.3.4. + + -- Michael Stapelberg Sat, 02 May 2009 20:55:46 +0200 + +i3-wm (3.a-1) unstable; urgency=low + + * First release (Closes: #521709) + + -- Michael Stapelberg Sun, 29 Mar 2009 18:21:30 +0200