├── .clang-format ├── .dockerignore ├── .editorconfig ├── .github ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── workflows │ └── main.yml ├── .gitignore ├── AnyEvent-I3 ├── Changes ├── MANIFEST ├── MANIFEST.SKIP ├── Makefile.PL ├── README ├── lib │ └── AnyEvent │ │ └── I3.pm └── t │ ├── 00-load.t │ ├── 01-workspaces.t │ ├── 02-sugar.t │ ├── boilerplate.t │ ├── manifest.t │ ├── pod-coverage.t │ └── pod.t ├── DEPENDS ├── I3_VERSION ├── LICENSE ├── PACKAGE-MAINTAINER ├── README.md ├── RELEASE-NOTES-4.22 ├── contrib ├── banner.svg ├── dump-asy.pl ├── gtk-tree-watch.pl ├── i3-wsbar ├── per-workspace-layout.pl ├── show-download-count.sh ├── sticker-7x5cm-stickma.tif.lzma ├── sticker_stickma_black.svg └── trivial-bar-script.sh ├── debian ├── changelog ├── compat ├── control ├── copyright ├── i3-wm.doc-base ├── i3-wm.install ├── i3-wm.links ├── i3-wm.wm ├── rules ├── upstream │ └── signing-key.asc └── watch ├── docs ├── GPN-2009-06-27 │ ├── i3.tex │ ├── reparenting.dia │ ├── reparenting.eps │ ├── screenshot.png │ ├── screenshot.ps │ ├── xft.eps │ ├── xft.jpg │ ├── xserver_konzept.dia │ └── xserver_konzept.eps ├── NoName-2009-03-12 │ ├── i3.tex │ └── screenshot.png ├── asciidoc-git.conf ├── bigpicture.asy ├── bigpicture.png ├── debugging ├── gaps1920.png ├── hacking-howto ├── i3-pod2html ├── i3-sync-working.dia ├── i3-sync-working.png ├── i3-sync.dia ├── i3-sync.png ├── i3bar-protocol ├── ipc ├── keyboard-layer1.png ├── keyboard-layer1.svg ├── keyboard-layer2.png ├── keyboard-layer2.svg ├── layout-saving ├── layout-saving-1.png ├── logo-30.png ├── modes.png ├── multi-monitor ├── refcard.html ├── refcard_style.css ├── single_terminal.png ├── slides-2012-01-25 │ ├── TdilE.jpg │ ├── Ubuntu_Linux_Jaunty_screenshot.png │ └── i3.tex ├── slides-2012-03-16 │ ├── TdilE.jpg │ ├── Ubuntu_Linux_Jaunty_screenshot.png │ └── i3.tex ├── snapping.png ├── testsuite ├── tree-layout1.png ├── tree-layout2.png ├── tree-shot1.png ├── tree-shot2.png ├── tree-shot3.png ├── tree-shot4.png ├── two_columns.png ├── two_terminals.png ├── userguide ├── wsbar ├── wsbar.dia └── wsbar.png ├── etc ├── config └── config.keycodes ├── generate-command-parser.pl ├── i3-config-wizard ├── i3-config-wizard-atoms.xmacro.h ├── main.c └── xcb.h ├── i3-dmenu-desktop ├── i3-dump-log └── main.c ├── i3-input ├── UnicodeData.txt ├── convmap.pl ├── i3-input.h ├── keysym.map ├── keysym2ucs.c ├── keysym2ucs.h └── main.c ├── i3-migrate-config-to-v4 ├── i3-msg └── main.c ├── i3-nagbar ├── i3-nagbar-atoms.xmacro.h └── main.c ├── i3-save-tree ├── i3-sensible-editor ├── i3-sensible-pager ├── i3-sensible-terminal ├── i3bar ├── .gitignore ├── LICENSE ├── include │ ├── child.h │ ├── common.h │ ├── configuration.h │ ├── ipc.h │ ├── mode.h │ ├── outputs.h │ ├── parse_json_header.h │ ├── trayclients.h │ ├── util.h │ ├── workspaces.h │ ├── xcb.h │ └── xcb_atoms.def └── src │ ├── child.c │ ├── config.c │ ├── ipc.c │ ├── main.c │ ├── mode.c │ ├── outputs.c │ ├── parse_json_header.c │ ├── workspaces.c │ └── xcb.c ├── include ├── all.h ├── assignments.h ├── bindings.h ├── click.h ├── commands.h ├── commands_parser.h ├── con.h ├── config_directives.h ├── config_parser.h ├── configuration.h ├── data.h ├── display_version.h ├── drag.h ├── ewmh.h ├── fake_outputs.h ├── floating.h ├── gaps.h ├── handlers.h ├── i3-atoms_NET_SUPPORTED.xmacro.h ├── i3-atoms_rest.xmacro.h ├── i3.h ├── i3 │ └── ipc.h ├── ipc.h ├── key_press.h ├── libi3.h ├── load_layout.h ├── log.h ├── main.h ├── manage.h ├── match.h ├── move.h ├── output.h ├── queue.h ├── randr.h ├── regex.h ├── render.h ├── resize.h ├── restore_layout.h ├── scratchpad.h ├── sd-daemon.h ├── shmlog.h ├── sighandler.h ├── startup.h ├── sync.h ├── tiling_drag.h ├── tree.h ├── util.h ├── window.h ├── workspace.h ├── x.h ├── xcb.h ├── xcursor.h ├── xinerama.h └── yajl_utils.h ├── libi3 ├── README ├── boolstr.c ├── create_socket.c ├── dpi.c ├── draw_util.c ├── fake_configure_notify.c ├── font.c ├── format_placeholders.c ├── g_utf8_make_valid.c ├── get_colorpixel.c ├── get_config_path.c ├── get_exe_path.c ├── get_mod_mask.c ├── get_process_filename.c ├── get_visualtype.c ├── ipc_connect.c ├── ipc_recv_message.c ├── ipc_send_message.c ├── is_background_set.c ├── is_debug_build.c ├── mkdirp.c ├── nonblock.c ├── path_exists.c ├── resolve_tilde.c ├── root_atom_contents.c ├── safewrappers.c ├── screenshot_wallpaper.c ├── string.c ├── strndup.c └── ucs2_conversion.c ├── logo.svg ├── man ├── asciidoc.conf.in ├── i3-config-wizard.man ├── i3-dump-log.man ├── i3-input.man ├── i3-migrate-config-to-v4.man ├── i3-msg.man ├── i3-nagbar.man ├── i3-sensible-editor.man ├── i3-sensible-pager.man ├── i3-sensible-terminal.man ├── i3.man └── i3bar.man ├── meson.build ├── meson ├── meson-dist-script └── meson-install-i3-with-shmlog ├── meson_options.txt ├── parser-specs ├── commands.spec ├── config.spec └── highlighting.vim ├── pseudo-doc.doxygen ├── release-notes ├── bugfixes │ ├── 0-example │ ├── 1-motif │ ├── 2-gaps-order │ └── 3-floating-from-tiling-from ├── changes │ ├── 0-example │ ├── 1-bar-padding │ ├── 2-text-alpha-channel │ ├── 3-nonprimary │ └── 4-mode-in-binding-event └── generator.pl ├── release.sh ├── share ├── applications │ └── i3.desktop └── xsessions │ ├── i3-with-shmlog.desktop │ └── i3.desktop ├── src ├── assignments.c ├── bindings.c ├── click.c ├── commands.c ├── commands_parser.c ├── con.c ├── config.c ├── config_directives.c ├── config_parser.c ├── display_version.c ├── drag.c ├── ewmh.c ├── fake_outputs.c ├── floating.c ├── gaps.c ├── handlers.c ├── ipc.c ├── key_press.c ├── load_layout.c ├── log.c ├── main.c ├── manage.c ├── match.c ├── move.c ├── output.c ├── randr.c ├── regex.c ├── render.c ├── resize.c ├── restore_layout.c ├── scratchpad.c ├── sd-daemon.c ├── sighandler.c ├── startup.c ├── sync.c ├── tiling_drag.c ├── tree.c ├── util.c ├── version.c ├── window.c ├── workspace.c ├── x.c ├── xcb.c ├── xcursor.c └── xinerama.c ├── testcases ├── .gitignore ├── Makefile.PL ├── complete-run.pl.in ├── i3-test.config ├── inject_randr1.5.c ├── lib │ ├── SocketActivation.pm │ ├── StartXServer.pm │ ├── StatusLine.pm │ ├── TestWorker.pm │ ├── i3test.pm.in │ └── i3test │ │ ├── Test.pm │ │ ├── Util.pm │ │ └── XTEST.pm ├── new-test ├── restart-state.golden ├── t │ ├── 000-load-deps.t │ ├── 001-tile.t │ ├── 002-i3-sync.t │ ├── 003-ipc.t │ ├── 004-unmanaged.t │ ├── 005-floating.t │ ├── 100-fullscreen.t │ ├── 101-focus.t │ ├── 102-dock.t │ ├── 104-focus-stack.t │ ├── 111-goto.t │ ├── 112-floating-resize.t │ ├── 113-urgent.t │ ├── 114-client-leader.t │ ├── 115-ipc-workspaces.t │ ├── 116-nestedcons.t │ ├── 117-workspace.t │ ├── 118-openkill.t │ ├── 119-match.t │ ├── 120-multiple-cmds.t │ ├── 121-next-prev.t │ ├── 122-split.t │ ├── 124-move.t │ ├── 126-regress-close.t │ ├── 127-regress-floating-parent.t │ ├── 128-open-order.t │ ├── 129-focus-after-close.t │ ├── 130-close-empty-split.t │ ├── 131-stacking-order.t │ ├── 132-move-workspace.t │ ├── 133-size-hints.t │ ├── 134-invalid-command.t │ ├── 135-floating-focus.t │ ├── 136-floating-ws-empty.t │ ├── 137-floating-unmap.t │ ├── 138-floating-attach.t │ ├── 139-ws-numbers.t │ ├── 140-focus-lost.t │ ├── 141-resize.t │ ├── 142-regress-move-floating.t │ ├── 143-regress-floating-restart.t │ ├── 144-regress-floating-resize.t │ ├── 145-flattening.t │ ├── 146-floating-reinsert.t │ ├── 147-regress-floatingmove.t │ ├── 148-regress-floatingmovews.t │ ├── 150-regress-dock-restart.t │ ├── 151-regress-float-size.t │ ├── 152-regress-level-up.t │ ├── 153-floating-originalsize.t │ ├── 154-regress-multiple-dock.t │ ├── 155-floating-split-size.t │ ├── 156-fullscreen-focus.t │ ├── 158-wm_take_focus.t │ ├── 159-socketpaths.t │ ├── 161-regress-borders-restart.t │ ├── 162-regress-dock-urgent.t │ ├── 163-wm-state.t │ ├── 164-kill-win-vs-client.t │ ├── 165-for_window.t │ ├── 166-assign.t │ ├── 167-workspace_layout.t │ ├── 168-regress-fullscreen-restart.t │ ├── 169-border-toggle.t │ ├── 170-force_focus_wrapping.t │ ├── 171-config-migrate.t │ ├── 172-start-on-named-ws.t │ ├── 173-get-marks.t │ ├── 174-border-config.t │ ├── 175-startup-notification.t │ ├── 176-workspace-baf.t │ ├── 177-bar-config.t │ ├── 178-regress-workspace-open.t │ ├── 179-regress-multiple-ws.t │ ├── 180-fd-leaks.t │ ├── 181-regress-float-border.t │ ├── 182-regress-focus-dock.t │ ├── 183-config-variables.t │ ├── 184-regress-float-split-resize.t │ ├── 185-scratchpad.t │ ├── 186-regress-assign-focus-parent.t │ ├── 187-commands-parser.t │ ├── 188-regress-focus-restart.t │ ├── 189-floating-constraints.t │ ├── 190-scratchpad-diff-ws.t │ ├── 191-resize-levels.t │ ├── 192-layout.t │ ├── 193-ipc-version.t │ ├── 194-regress-floating-size.t │ ├── 195-net-active-window.t │ ├── 196-randr-output-names.t │ ├── 197-regression-move-vanish.t │ ├── 198-regression-scratchpad-crash.t │ ├── 199-ipc-mode-event.t │ ├── 200-urgency-timer.t │ ├── 201-config-parser.t │ ├── 202-scratchpad-criteria.t │ ├── 203-regress-assign-and-move.t │ ├── 204-regress-scratchpad-move.t │ ├── 205-ipc-windows.t │ ├── 206-fullscreen-scratchpad.t │ ├── 207-shmlog.t │ ├── 208-regress-floating-criteria.t │ ├── 209-ewmh-net-workarea.t │ ├── 210-mark-unmark.t │ ├── 211-regress-urgency-assign.t │ ├── 212-assign-urgency.t │ ├── 213-layout-restore-simple.t │ ├── 214-layout-restore-criteria.t │ ├── 215-layout-restore-crash.t │ ├── 216-layout-restore-split-swallows.t │ ├── 217-NET_CURRENT_DESKTOP.t │ ├── 218-regress-floating-split.t │ ├── 219-ipc-window-focus.t │ ├── 220-ipc-window-title.t │ ├── 221-floating-type-hints.t │ ├── 222-regress-dock-resize.t │ ├── 223-net-client-list.t │ ├── 224-regress-resize-branch.t │ ├── 225-ipc-window-fullscreen.t │ ├── 226-internal-workspaces.t │ ├── 227-ipc-workspace-empty.t │ ├── 228-border-widths.t │ ├── 229-cleanup-tmpdir.t │ ├── 230-floating-fullscreen-restart.t │ ├── 231-ipc-floating-event.t │ ├── 232-cmd-move-criteria.t │ ├── 233-regress-manage-focus-unmapped.t │ ├── 234-ewmh-desktop-names.t │ ├── 235-check-config-no-x.t │ ├── 236-floating-focus-raise.t │ ├── 237-regress-assign-focus.t │ ├── 238-ipc-binding-event.t │ ├── 239-net-close-window-request.t │ ├── 240-focus-on-window-activation.t │ ├── 241-consistent-center.t │ ├── 242-no-focus.t │ ├── 243-move-to-mark.t │ ├── 244-new-workspace-floating-enable-center.t │ ├── 245-move-position-mouse.t │ ├── 246-window-decoration-focus.t │ ├── 247-config-line-continuation.t │ ├── 248-regress-urgency-clear.t │ ├── 249-layout-restore-floating.t │ ├── 250-layout-restore-multiple-criteria.t │ ├── 251-command-criteria-focused.t │ ├── 252-floating-size.t │ ├── 253-multiple-net-wm-state-atoms.t │ ├── 254-move-to-output-with-criteria.t │ ├── 255-multiple-marks.t │ ├── 256-no-auto-back-and-forth.t │ ├── 257-keypress-group1-fallback.t │ ├── 258-keypress-release.t │ ├── 259-net-wm-user-time.t │ ├── 260-invalid-criteria.t │ ├── 261-match-con_id-con_mark-combinations.t │ ├── 262-config-validation.t │ ├── 263-config-reload-reverts-bind-mode.t │ ├── 264-dock-criteria.t │ ├── 265-ipc-mark.t │ ├── 266-net-moveresize-window.t │ ├── 267-regress-mark-restart.t │ ├── 268-ipc-config.t │ ├── 269-focus-stack-above.t │ ├── 270-config-no-newline-end.t │ ├── 271-for_window_tilingfloating.t │ ├── 272-regress-focus-assign.t │ ├── 273-regress-focus-toggle.t │ ├── 274-move-branch-position.t │ ├── 275-ipc-window-close.t │ ├── 276-ipc-window-move.t │ ├── 277-ipc-window-urgent.t │ ├── 278-layout-restore-output.t │ ├── 279-regress-default-floating-border.t │ ├── 280-wm-class-change-handler.t │ ├── 281-regress-reload-bindsym.t │ ├── 282-tabbed-floating-disable-crash.t │ ├── 283-net-wm-state-hidden.t │ ├── 284-ewmh-visible-name.t │ ├── 285-sticky.t │ ├── 286-root-window-mouse-binding.t │ ├── 287-edge-borders.t │ ├── 288-i3-floating-window-atom.t │ ├── 289-ipc-shutdown-event.t │ ├── 290-keypress-numlock.t │ ├── 291-swap.t │ ├── 292-regress-layout-toggle.t │ ├── 293-focus-follows-mouse.t │ ├── 293-sticky-output-crash.t │ ├── 294-focus-order.t │ ├── 294-update-ewmh-atoms.t │ ├── 295-net-wm-state-focused.t │ ├── 296-regress-focus-behind-fullscreen-floating.t │ ├── 297-assign-workspace-to-output.t │ ├── 297-scroll-tabbed.t │ ├── 298-ipc-misbehaving-connection.t │ ├── 299-regress-scratchpad-focus.t │ ├── 300-restart-non-utf8.t │ ├── 301-shape.t │ ├── 302-tree.t │ ├── 303-regress-move-floating.t │ ├── 304-ipc-workspace-init.t │ ├── 305-restart-reply.t │ ├── 306-move-to-parent.t │ ├── 307-focus-next-prev.t │ ├── 308-focus_wrapping.t │ ├── 309-crash-move-parent.t │ ├── 310-client-message-sticky.t │ ├── 311-get-binding-modes.t │ ├── 312-regress-layout-default.t │ ├── 313-include.t │ ├── 314-window-icon-padding.t │ ├── 315-all-criterion.t │ ├── 315-long-commands.t │ ├── 316-drag-container.t │ ├── 316-transient-for-loop.t │ ├── 317-bar-config-font-order.t │ ├── 317-bar-output-trailing-space.t │ ├── 318-i3-dmenu-desktop.t │ ├── 319-gaps.t │ ├── 500-multi-monitor.t │ ├── 501-scratchpad.t │ ├── 502-focus-output.t │ ├── 503-workspace.t │ ├── 504-move-workspace-to-output.t │ ├── 505-scratchpad-resolution.t │ ├── 506-focus-right.t │ ├── 507-workspace-move-crash.t │ ├── 509-workspace_layout.t │ ├── 510-focus-across-outputs.t │ ├── 511-scratchpad-configure-request.t │ ├── 512-move-wraps.t │ ├── 513-move-workspace.t │ ├── 514-ipc-workspace-multi-monitor.t │ ├── 515-create-workspace.t │ ├── 516-move.t │ ├── 518-interpret-workspace-numbers.t │ ├── 519-mouse-warping.t │ ├── 520-regress-focus-direction-floating.t │ ├── 521-ewmh-desktop-viewport.t │ ├── 522-rename-assigned-workspace.t │ ├── 523-move-position-center.t │ ├── 524-move.t │ ├── 525-i3bar-mouse-bindings.t │ ├── 526-reconfigure-dock.t │ ├── 527-focus-fallback.t │ ├── 528-workspace-next-prev-reversed.t │ ├── 529-net-wm-desktop.t │ ├── 530-bug-2229.t │ ├── 531-fullscreen-on-given-output.t │ ├── 532-xresources.t │ ├── 533-randr15.t │ ├── 534-dont-warp.t │ ├── 535-workspace-next-prev.t │ ├── 536-net-wm-desktop_mm.t │ ├── 537-move-single-to-output.t │ ├── 538-i3bar-primary-output.t │ ├── 539-disable_focus_wrapping.t │ ├── 540-sigterm-cleanup.t │ ├── 541-resize-set-tiling.t │ ├── 542-layout-restore-remanage.t │ ├── 543-move-workspace-to-multiple-outputs.t │ ├── 544-focus-multiple-outputs.t │ ├── 545-i3-registration.t │ ├── 546-empty-bindcommand.t │ ├── 547-explicit-mode-default.t │ ├── 547-nested-variables.t │ ├── 548-motif-hints.t │ └── 549-focus-wrapping-gaps.t └── valgrind.supp └── travis ├── check-safe-wrappers.sh ├── check-spelling.pl ├── debian-build.sh ├── deploy-github-pages.sh ├── docker-build-and-push.sh ├── docs.sh ├── ha.sh ├── push-balto.sh ├── run-tests.sh ├── skip-pkg.sh ├── travis-base-386.Dockerfile ├── travis-base-ubuntu-386.Dockerfile ├── travis-base-ubuntu.Dockerfile └── travis-base.Dockerfile /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/.clang-format -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/.github/GOVERNANCE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/.gitignore -------------------------------------------------------------------------------- /AnyEvent-I3/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/AnyEvent-I3/Changes -------------------------------------------------------------------------------- /AnyEvent-I3/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/AnyEvent-I3/MANIFEST -------------------------------------------------------------------------------- /AnyEvent-I3/MANIFEST.SKIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/AnyEvent-I3/MANIFEST.SKIP -------------------------------------------------------------------------------- /AnyEvent-I3/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/AnyEvent-I3/Makefile.PL -------------------------------------------------------------------------------- /AnyEvent-I3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/AnyEvent-I3/README -------------------------------------------------------------------------------- /AnyEvent-I3/lib/AnyEvent/I3.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/AnyEvent-I3/lib/AnyEvent/I3.pm -------------------------------------------------------------------------------- /AnyEvent-I3/t/00-load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/AnyEvent-I3/t/00-load.t -------------------------------------------------------------------------------- /AnyEvent-I3/t/01-workspaces.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/AnyEvent-I3/t/01-workspaces.t -------------------------------------------------------------------------------- /AnyEvent-I3/t/02-sugar.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/AnyEvent-I3/t/02-sugar.t -------------------------------------------------------------------------------- /AnyEvent-I3/t/boilerplate.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/AnyEvent-I3/t/boilerplate.t -------------------------------------------------------------------------------- /AnyEvent-I3/t/manifest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/AnyEvent-I3/t/manifest.t -------------------------------------------------------------------------------- /AnyEvent-I3/t/pod-coverage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/AnyEvent-I3/t/pod-coverage.t -------------------------------------------------------------------------------- /AnyEvent-I3/t/pod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/AnyEvent-I3/t/pod.t -------------------------------------------------------------------------------- /DEPENDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/DEPENDS -------------------------------------------------------------------------------- /I3_VERSION: -------------------------------------------------------------------------------- 1 | 4.19.1-non-git 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/LICENSE -------------------------------------------------------------------------------- /PACKAGE-MAINTAINER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/PACKAGE-MAINTAINER -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES-4.22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/RELEASE-NOTES-4.22 -------------------------------------------------------------------------------- /contrib/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/contrib/banner.svg -------------------------------------------------------------------------------- /contrib/dump-asy.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/contrib/dump-asy.pl -------------------------------------------------------------------------------- /contrib/gtk-tree-watch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/contrib/gtk-tree-watch.pl -------------------------------------------------------------------------------- /contrib/i3-wsbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/contrib/i3-wsbar -------------------------------------------------------------------------------- /contrib/per-workspace-layout.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/contrib/per-workspace-layout.pl -------------------------------------------------------------------------------- /contrib/show-download-count.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/contrib/show-download-count.sh -------------------------------------------------------------------------------- /contrib/sticker-7x5cm-stickma.tif.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/contrib/sticker-7x5cm-stickma.tif.lzma -------------------------------------------------------------------------------- /contrib/sticker_stickma_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/contrib/sticker_stickma_black.svg -------------------------------------------------------------------------------- /contrib/trivial-bar-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/contrib/trivial-bar-script.sh -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/i3-wm.doc-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/debian/i3-wm.doc-base -------------------------------------------------------------------------------- /debian/i3-wm.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/debian/i3-wm.install -------------------------------------------------------------------------------- /debian/i3-wm.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/debian/i3-wm.links -------------------------------------------------------------------------------- /debian/i3-wm.wm: -------------------------------------------------------------------------------- 1 | /usr/bin/i3 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/upstream/signing-key.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/debian/upstream/signing-key.asc -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/debian/watch -------------------------------------------------------------------------------- /docs/GPN-2009-06-27/i3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/GPN-2009-06-27/i3.tex -------------------------------------------------------------------------------- /docs/GPN-2009-06-27/reparenting.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/GPN-2009-06-27/reparenting.dia -------------------------------------------------------------------------------- /docs/GPN-2009-06-27/reparenting.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/GPN-2009-06-27/reparenting.eps -------------------------------------------------------------------------------- /docs/GPN-2009-06-27/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/GPN-2009-06-27/screenshot.png -------------------------------------------------------------------------------- /docs/GPN-2009-06-27/screenshot.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/GPN-2009-06-27/screenshot.ps -------------------------------------------------------------------------------- /docs/GPN-2009-06-27/xft.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/GPN-2009-06-27/xft.eps -------------------------------------------------------------------------------- /docs/GPN-2009-06-27/xft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/GPN-2009-06-27/xft.jpg -------------------------------------------------------------------------------- /docs/GPN-2009-06-27/xserver_konzept.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/GPN-2009-06-27/xserver_konzept.dia -------------------------------------------------------------------------------- /docs/GPN-2009-06-27/xserver_konzept.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/GPN-2009-06-27/xserver_konzept.eps -------------------------------------------------------------------------------- /docs/NoName-2009-03-12/i3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/NoName-2009-03-12/i3.tex -------------------------------------------------------------------------------- /docs/NoName-2009-03-12/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/NoName-2009-03-12/screenshot.png -------------------------------------------------------------------------------- /docs/asciidoc-git.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/asciidoc-git.conf -------------------------------------------------------------------------------- /docs/bigpicture.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/bigpicture.asy -------------------------------------------------------------------------------- /docs/bigpicture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/bigpicture.png -------------------------------------------------------------------------------- /docs/debugging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/debugging -------------------------------------------------------------------------------- /docs/gaps1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/gaps1920.png -------------------------------------------------------------------------------- /docs/hacking-howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/hacking-howto -------------------------------------------------------------------------------- /docs/i3-pod2html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/i3-pod2html -------------------------------------------------------------------------------- /docs/i3-sync-working.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/i3-sync-working.dia -------------------------------------------------------------------------------- /docs/i3-sync-working.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/i3-sync-working.png -------------------------------------------------------------------------------- /docs/i3-sync.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/i3-sync.dia -------------------------------------------------------------------------------- /docs/i3-sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/i3-sync.png -------------------------------------------------------------------------------- /docs/i3bar-protocol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/i3bar-protocol -------------------------------------------------------------------------------- /docs/ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/ipc -------------------------------------------------------------------------------- /docs/keyboard-layer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/keyboard-layer1.png -------------------------------------------------------------------------------- /docs/keyboard-layer1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/keyboard-layer1.svg -------------------------------------------------------------------------------- /docs/keyboard-layer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/keyboard-layer2.png -------------------------------------------------------------------------------- /docs/keyboard-layer2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/keyboard-layer2.svg -------------------------------------------------------------------------------- /docs/layout-saving: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/layout-saving -------------------------------------------------------------------------------- /docs/layout-saving-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/layout-saving-1.png -------------------------------------------------------------------------------- /docs/logo-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/logo-30.png -------------------------------------------------------------------------------- /docs/modes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/modes.png -------------------------------------------------------------------------------- /docs/multi-monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/multi-monitor -------------------------------------------------------------------------------- /docs/refcard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/refcard.html -------------------------------------------------------------------------------- /docs/refcard_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/refcard_style.css -------------------------------------------------------------------------------- /docs/single_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/single_terminal.png -------------------------------------------------------------------------------- /docs/slides-2012-01-25/TdilE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/slides-2012-01-25/TdilE.jpg -------------------------------------------------------------------------------- /docs/slides-2012-01-25/Ubuntu_Linux_Jaunty_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/slides-2012-01-25/Ubuntu_Linux_Jaunty_screenshot.png -------------------------------------------------------------------------------- /docs/slides-2012-01-25/i3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/slides-2012-01-25/i3.tex -------------------------------------------------------------------------------- /docs/slides-2012-03-16/TdilE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/slides-2012-03-16/TdilE.jpg -------------------------------------------------------------------------------- /docs/slides-2012-03-16/Ubuntu_Linux_Jaunty_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/slides-2012-03-16/Ubuntu_Linux_Jaunty_screenshot.png -------------------------------------------------------------------------------- /docs/slides-2012-03-16/i3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/slides-2012-03-16/i3.tex -------------------------------------------------------------------------------- /docs/snapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/snapping.png -------------------------------------------------------------------------------- /docs/testsuite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/testsuite -------------------------------------------------------------------------------- /docs/tree-layout1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/tree-layout1.png -------------------------------------------------------------------------------- /docs/tree-layout2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/tree-layout2.png -------------------------------------------------------------------------------- /docs/tree-shot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/tree-shot1.png -------------------------------------------------------------------------------- /docs/tree-shot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/tree-shot2.png -------------------------------------------------------------------------------- /docs/tree-shot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/tree-shot3.png -------------------------------------------------------------------------------- /docs/tree-shot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/tree-shot4.png -------------------------------------------------------------------------------- /docs/two_columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/two_columns.png -------------------------------------------------------------------------------- /docs/two_terminals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/two_terminals.png -------------------------------------------------------------------------------- /docs/userguide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/userguide -------------------------------------------------------------------------------- /docs/wsbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/wsbar -------------------------------------------------------------------------------- /docs/wsbar.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/wsbar.dia -------------------------------------------------------------------------------- /docs/wsbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/docs/wsbar.png -------------------------------------------------------------------------------- /etc/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/etc/config -------------------------------------------------------------------------------- /etc/config.keycodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/etc/config.keycodes -------------------------------------------------------------------------------- /generate-command-parser.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/generate-command-parser.pl -------------------------------------------------------------------------------- /i3-config-wizard/i3-config-wizard-atoms.xmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-config-wizard/i3-config-wizard-atoms.xmacro.h -------------------------------------------------------------------------------- /i3-config-wizard/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-config-wizard/main.c -------------------------------------------------------------------------------- /i3-config-wizard/xcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-config-wizard/xcb.h -------------------------------------------------------------------------------- /i3-dmenu-desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-dmenu-desktop -------------------------------------------------------------------------------- /i3-dump-log/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-dump-log/main.c -------------------------------------------------------------------------------- /i3-input/UnicodeData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-input/UnicodeData.txt -------------------------------------------------------------------------------- /i3-input/convmap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-input/convmap.pl -------------------------------------------------------------------------------- /i3-input/i3-input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-input/i3-input.h -------------------------------------------------------------------------------- /i3-input/keysym.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-input/keysym.map -------------------------------------------------------------------------------- /i3-input/keysym2ucs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-input/keysym2ucs.c -------------------------------------------------------------------------------- /i3-input/keysym2ucs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-input/keysym2ucs.h -------------------------------------------------------------------------------- /i3-input/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-input/main.c -------------------------------------------------------------------------------- /i3-migrate-config-to-v4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-migrate-config-to-v4 -------------------------------------------------------------------------------- /i3-msg/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-msg/main.c -------------------------------------------------------------------------------- /i3-nagbar/i3-nagbar-atoms.xmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-nagbar/i3-nagbar-atoms.xmacro.h -------------------------------------------------------------------------------- /i3-nagbar/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-nagbar/main.c -------------------------------------------------------------------------------- /i3-save-tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-save-tree -------------------------------------------------------------------------------- /i3-sensible-editor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-sensible-editor -------------------------------------------------------------------------------- /i3-sensible-pager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-sensible-pager -------------------------------------------------------------------------------- /i3-sensible-terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3-sensible-terminal -------------------------------------------------------------------------------- /i3bar/.gitignore: -------------------------------------------------------------------------------- 1 | i3bar 2 | *.o 3 | core 4 | doc/i3bar.1 5 | -------------------------------------------------------------------------------- /i3bar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/LICENSE -------------------------------------------------------------------------------- /i3bar/include/child.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/include/child.h -------------------------------------------------------------------------------- /i3bar/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/include/common.h -------------------------------------------------------------------------------- /i3bar/include/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/include/configuration.h -------------------------------------------------------------------------------- /i3bar/include/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/include/ipc.h -------------------------------------------------------------------------------- /i3bar/include/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/include/mode.h -------------------------------------------------------------------------------- /i3bar/include/outputs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/include/outputs.h -------------------------------------------------------------------------------- /i3bar/include/parse_json_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/include/parse_json_header.h -------------------------------------------------------------------------------- /i3bar/include/trayclients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/include/trayclients.h -------------------------------------------------------------------------------- /i3bar/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/include/util.h -------------------------------------------------------------------------------- /i3bar/include/workspaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/include/workspaces.h -------------------------------------------------------------------------------- /i3bar/include/xcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/include/xcb.h -------------------------------------------------------------------------------- /i3bar/include/xcb_atoms.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/include/xcb_atoms.def -------------------------------------------------------------------------------- /i3bar/src/child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/src/child.c -------------------------------------------------------------------------------- /i3bar/src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/src/config.c -------------------------------------------------------------------------------- /i3bar/src/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/src/ipc.c -------------------------------------------------------------------------------- /i3bar/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/src/main.c -------------------------------------------------------------------------------- /i3bar/src/mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/src/mode.c -------------------------------------------------------------------------------- /i3bar/src/outputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/src/outputs.c -------------------------------------------------------------------------------- /i3bar/src/parse_json_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/src/parse_json_header.c -------------------------------------------------------------------------------- /i3bar/src/workspaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/src/workspaces.c -------------------------------------------------------------------------------- /i3bar/src/xcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/i3bar/src/xcb.c -------------------------------------------------------------------------------- /include/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/all.h -------------------------------------------------------------------------------- /include/assignments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/assignments.h -------------------------------------------------------------------------------- /include/bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/bindings.h -------------------------------------------------------------------------------- /include/click.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/click.h -------------------------------------------------------------------------------- /include/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/commands.h -------------------------------------------------------------------------------- /include/commands_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/commands_parser.h -------------------------------------------------------------------------------- /include/con.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/con.h -------------------------------------------------------------------------------- /include/config_directives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/config_directives.h -------------------------------------------------------------------------------- /include/config_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/config_parser.h -------------------------------------------------------------------------------- /include/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/configuration.h -------------------------------------------------------------------------------- /include/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/data.h -------------------------------------------------------------------------------- /include/display_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/display_version.h -------------------------------------------------------------------------------- /include/drag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/drag.h -------------------------------------------------------------------------------- /include/ewmh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/ewmh.h -------------------------------------------------------------------------------- /include/fake_outputs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/fake_outputs.h -------------------------------------------------------------------------------- /include/floating.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/floating.h -------------------------------------------------------------------------------- /include/gaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/gaps.h -------------------------------------------------------------------------------- /include/handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/handlers.h -------------------------------------------------------------------------------- /include/i3-atoms_NET_SUPPORTED.xmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/i3-atoms_NET_SUPPORTED.xmacro.h -------------------------------------------------------------------------------- /include/i3-atoms_rest.xmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/i3-atoms_rest.xmacro.h -------------------------------------------------------------------------------- /include/i3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/i3.h -------------------------------------------------------------------------------- /include/i3/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/i3/ipc.h -------------------------------------------------------------------------------- /include/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/ipc.h -------------------------------------------------------------------------------- /include/key_press.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/key_press.h -------------------------------------------------------------------------------- /include/libi3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/libi3.h -------------------------------------------------------------------------------- /include/load_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/load_layout.h -------------------------------------------------------------------------------- /include/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/log.h -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/main.h -------------------------------------------------------------------------------- /include/manage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/manage.h -------------------------------------------------------------------------------- /include/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/match.h -------------------------------------------------------------------------------- /include/move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/move.h -------------------------------------------------------------------------------- /include/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/output.h -------------------------------------------------------------------------------- /include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/queue.h -------------------------------------------------------------------------------- /include/randr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/randr.h -------------------------------------------------------------------------------- /include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/regex.h -------------------------------------------------------------------------------- /include/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/render.h -------------------------------------------------------------------------------- /include/resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/resize.h -------------------------------------------------------------------------------- /include/restore_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/restore_layout.h -------------------------------------------------------------------------------- /include/scratchpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/scratchpad.h -------------------------------------------------------------------------------- /include/sd-daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/sd-daemon.h -------------------------------------------------------------------------------- /include/shmlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/shmlog.h -------------------------------------------------------------------------------- /include/sighandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/sighandler.h -------------------------------------------------------------------------------- /include/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/startup.h -------------------------------------------------------------------------------- /include/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/sync.h -------------------------------------------------------------------------------- /include/tiling_drag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/tiling_drag.h -------------------------------------------------------------------------------- /include/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/tree.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/util.h -------------------------------------------------------------------------------- /include/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/window.h -------------------------------------------------------------------------------- /include/workspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/workspace.h -------------------------------------------------------------------------------- /include/x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/x.h -------------------------------------------------------------------------------- /include/xcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/xcb.h -------------------------------------------------------------------------------- /include/xcursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/xcursor.h -------------------------------------------------------------------------------- /include/xinerama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/xinerama.h -------------------------------------------------------------------------------- /include/yajl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/include/yajl_utils.h -------------------------------------------------------------------------------- /libi3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/README -------------------------------------------------------------------------------- /libi3/boolstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/boolstr.c -------------------------------------------------------------------------------- /libi3/create_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/create_socket.c -------------------------------------------------------------------------------- /libi3/dpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/dpi.c -------------------------------------------------------------------------------- /libi3/draw_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/draw_util.c -------------------------------------------------------------------------------- /libi3/fake_configure_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/fake_configure_notify.c -------------------------------------------------------------------------------- /libi3/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/font.c -------------------------------------------------------------------------------- /libi3/format_placeholders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/format_placeholders.c -------------------------------------------------------------------------------- /libi3/g_utf8_make_valid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/g_utf8_make_valid.c -------------------------------------------------------------------------------- /libi3/get_colorpixel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/get_colorpixel.c -------------------------------------------------------------------------------- /libi3/get_config_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/get_config_path.c -------------------------------------------------------------------------------- /libi3/get_exe_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/get_exe_path.c -------------------------------------------------------------------------------- /libi3/get_mod_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/get_mod_mask.c -------------------------------------------------------------------------------- /libi3/get_process_filename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/get_process_filename.c -------------------------------------------------------------------------------- /libi3/get_visualtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/get_visualtype.c -------------------------------------------------------------------------------- /libi3/ipc_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/ipc_connect.c -------------------------------------------------------------------------------- /libi3/ipc_recv_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/ipc_recv_message.c -------------------------------------------------------------------------------- /libi3/ipc_send_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/ipc_send_message.c -------------------------------------------------------------------------------- /libi3/is_background_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/is_background_set.c -------------------------------------------------------------------------------- /libi3/is_debug_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/is_debug_build.c -------------------------------------------------------------------------------- /libi3/mkdirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/mkdirp.c -------------------------------------------------------------------------------- /libi3/nonblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/nonblock.c -------------------------------------------------------------------------------- /libi3/path_exists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/path_exists.c -------------------------------------------------------------------------------- /libi3/resolve_tilde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/resolve_tilde.c -------------------------------------------------------------------------------- /libi3/root_atom_contents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/root_atom_contents.c -------------------------------------------------------------------------------- /libi3/safewrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/safewrappers.c -------------------------------------------------------------------------------- /libi3/screenshot_wallpaper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/screenshot_wallpaper.c -------------------------------------------------------------------------------- /libi3/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/string.c -------------------------------------------------------------------------------- /libi3/strndup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/strndup.c -------------------------------------------------------------------------------- /libi3/ucs2_conversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/libi3/ucs2_conversion.c -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/logo.svg -------------------------------------------------------------------------------- /man/asciidoc.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/man/asciidoc.conf.in -------------------------------------------------------------------------------- /man/i3-config-wizard.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/man/i3-config-wizard.man -------------------------------------------------------------------------------- /man/i3-dump-log.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/man/i3-dump-log.man -------------------------------------------------------------------------------- /man/i3-input.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/man/i3-input.man -------------------------------------------------------------------------------- /man/i3-migrate-config-to-v4.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/man/i3-migrate-config-to-v4.man -------------------------------------------------------------------------------- /man/i3-msg.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/man/i3-msg.man -------------------------------------------------------------------------------- /man/i3-nagbar.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/man/i3-nagbar.man -------------------------------------------------------------------------------- /man/i3-sensible-editor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/man/i3-sensible-editor.man -------------------------------------------------------------------------------- /man/i3-sensible-pager.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/man/i3-sensible-pager.man -------------------------------------------------------------------------------- /man/i3-sensible-terminal.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/man/i3-sensible-terminal.man -------------------------------------------------------------------------------- /man/i3.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/man/i3.man -------------------------------------------------------------------------------- /man/i3bar.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/man/i3bar.man -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/meson.build -------------------------------------------------------------------------------- /meson/meson-dist-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/meson/meson-dist-script -------------------------------------------------------------------------------- /meson/meson-install-i3-with-shmlog: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ln -sf "i3" "${MESON_INSTALL_DESTDIR_PREFIX}/$1/i3-with-shmlog" 3 | -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/meson_options.txt -------------------------------------------------------------------------------- /parser-specs/commands.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/parser-specs/commands.spec -------------------------------------------------------------------------------- /parser-specs/config.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/parser-specs/config.spec -------------------------------------------------------------------------------- /parser-specs/highlighting.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/parser-specs/highlighting.vim -------------------------------------------------------------------------------- /pseudo-doc.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/pseudo-doc.doxygen -------------------------------------------------------------------------------- /release-notes/bugfixes/0-example: -------------------------------------------------------------------------------- 1 | fix crash with "layout default" 2 | -------------------------------------------------------------------------------- /release-notes/bugfixes/1-motif: -------------------------------------------------------------------------------- 1 | Fix compliance to _MOTIF_WM_HINTS spec when all decorations are set 2 | -------------------------------------------------------------------------------- /release-notes/bugfixes/2-gaps-order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/release-notes/bugfixes/2-gaps-order -------------------------------------------------------------------------------- /release-notes/bugfixes/3-floating-from-tiling-from: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/release-notes/bugfixes/3-floating-from-tiling-from -------------------------------------------------------------------------------- /release-notes/changes/0-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/release-notes/changes/0-example -------------------------------------------------------------------------------- /release-notes/changes/1-bar-padding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/release-notes/changes/1-bar-padding -------------------------------------------------------------------------------- /release-notes/changes/2-text-alpha-channel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/release-notes/changes/2-text-alpha-channel -------------------------------------------------------------------------------- /release-notes/changes/3-nonprimary: -------------------------------------------------------------------------------- 1 | Support nonprimary keyword for outputs 2 | -------------------------------------------------------------------------------- /release-notes/changes/4-mode-in-binding-event: -------------------------------------------------------------------------------- 1 | add "mode" field in binding event 2 | -------------------------------------------------------------------------------- /release-notes/generator.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/release-notes/generator.pl -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/release.sh -------------------------------------------------------------------------------- /share/applications/i3.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/share/applications/i3.desktop -------------------------------------------------------------------------------- /share/xsessions/i3-with-shmlog.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/share/xsessions/i3-with-shmlog.desktop -------------------------------------------------------------------------------- /share/xsessions/i3.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/share/xsessions/i3.desktop -------------------------------------------------------------------------------- /src/assignments.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/assignments.c -------------------------------------------------------------------------------- /src/bindings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/bindings.c -------------------------------------------------------------------------------- /src/click.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/click.c -------------------------------------------------------------------------------- /src/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/commands.c -------------------------------------------------------------------------------- /src/commands_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/commands_parser.c -------------------------------------------------------------------------------- /src/con.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/con.c -------------------------------------------------------------------------------- /src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/config.c -------------------------------------------------------------------------------- /src/config_directives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/config_directives.c -------------------------------------------------------------------------------- /src/config_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/config_parser.c -------------------------------------------------------------------------------- /src/display_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/display_version.c -------------------------------------------------------------------------------- /src/drag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/drag.c -------------------------------------------------------------------------------- /src/ewmh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/ewmh.c -------------------------------------------------------------------------------- /src/fake_outputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/fake_outputs.c -------------------------------------------------------------------------------- /src/floating.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/floating.c -------------------------------------------------------------------------------- /src/gaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/gaps.c -------------------------------------------------------------------------------- /src/handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/handlers.c -------------------------------------------------------------------------------- /src/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/ipc.c -------------------------------------------------------------------------------- /src/key_press.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/key_press.c -------------------------------------------------------------------------------- /src/load_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/load_layout.c -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/log.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/main.c -------------------------------------------------------------------------------- /src/manage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/manage.c -------------------------------------------------------------------------------- /src/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/match.c -------------------------------------------------------------------------------- /src/move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/move.c -------------------------------------------------------------------------------- /src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/output.c -------------------------------------------------------------------------------- /src/randr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/randr.c -------------------------------------------------------------------------------- /src/regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/regex.c -------------------------------------------------------------------------------- /src/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/render.c -------------------------------------------------------------------------------- /src/resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/resize.c -------------------------------------------------------------------------------- /src/restore_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/restore_layout.c -------------------------------------------------------------------------------- /src/scratchpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/scratchpad.c -------------------------------------------------------------------------------- /src/sd-daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/sd-daemon.c -------------------------------------------------------------------------------- /src/sighandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/sighandler.c -------------------------------------------------------------------------------- /src/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/startup.c -------------------------------------------------------------------------------- /src/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/sync.c -------------------------------------------------------------------------------- /src/tiling_drag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/tiling_drag.c -------------------------------------------------------------------------------- /src/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/tree.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/util.c -------------------------------------------------------------------------------- /src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/version.c -------------------------------------------------------------------------------- /src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/window.c -------------------------------------------------------------------------------- /src/workspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/workspace.c -------------------------------------------------------------------------------- /src/x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/x.c -------------------------------------------------------------------------------- /src/xcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/xcb.c -------------------------------------------------------------------------------- /src/xcursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/xcursor.c -------------------------------------------------------------------------------- /src/xinerama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/src/xinerama.c -------------------------------------------------------------------------------- /testcases/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/.gitignore -------------------------------------------------------------------------------- /testcases/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/Makefile.PL -------------------------------------------------------------------------------- /testcases/complete-run.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/complete-run.pl.in -------------------------------------------------------------------------------- /testcases/i3-test.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/i3-test.config -------------------------------------------------------------------------------- /testcases/inject_randr1.5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/inject_randr1.5.c -------------------------------------------------------------------------------- /testcases/lib/SocketActivation.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/lib/SocketActivation.pm -------------------------------------------------------------------------------- /testcases/lib/StartXServer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/lib/StartXServer.pm -------------------------------------------------------------------------------- /testcases/lib/StatusLine.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/lib/StatusLine.pm -------------------------------------------------------------------------------- /testcases/lib/TestWorker.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/lib/TestWorker.pm -------------------------------------------------------------------------------- /testcases/lib/i3test.pm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/lib/i3test.pm.in -------------------------------------------------------------------------------- /testcases/lib/i3test/Test.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/lib/i3test/Test.pm -------------------------------------------------------------------------------- /testcases/lib/i3test/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/lib/i3test/Util.pm -------------------------------------------------------------------------------- /testcases/lib/i3test/XTEST.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/lib/i3test/XTEST.pm -------------------------------------------------------------------------------- /testcases/new-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/new-test -------------------------------------------------------------------------------- /testcases/restart-state.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/restart-state.golden -------------------------------------------------------------------------------- /testcases/t/000-load-deps.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/000-load-deps.t -------------------------------------------------------------------------------- /testcases/t/001-tile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/001-tile.t -------------------------------------------------------------------------------- /testcases/t/002-i3-sync.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/002-i3-sync.t -------------------------------------------------------------------------------- /testcases/t/003-ipc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/003-ipc.t -------------------------------------------------------------------------------- /testcases/t/004-unmanaged.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/004-unmanaged.t -------------------------------------------------------------------------------- /testcases/t/005-floating.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/005-floating.t -------------------------------------------------------------------------------- /testcases/t/100-fullscreen.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/100-fullscreen.t -------------------------------------------------------------------------------- /testcases/t/101-focus.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/101-focus.t -------------------------------------------------------------------------------- /testcases/t/102-dock.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/102-dock.t -------------------------------------------------------------------------------- /testcases/t/104-focus-stack.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/104-focus-stack.t -------------------------------------------------------------------------------- /testcases/t/111-goto.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/111-goto.t -------------------------------------------------------------------------------- /testcases/t/112-floating-resize.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/112-floating-resize.t -------------------------------------------------------------------------------- /testcases/t/113-urgent.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/113-urgent.t -------------------------------------------------------------------------------- /testcases/t/114-client-leader.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/114-client-leader.t -------------------------------------------------------------------------------- /testcases/t/115-ipc-workspaces.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/115-ipc-workspaces.t -------------------------------------------------------------------------------- /testcases/t/116-nestedcons.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/116-nestedcons.t -------------------------------------------------------------------------------- /testcases/t/117-workspace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/117-workspace.t -------------------------------------------------------------------------------- /testcases/t/118-openkill.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/118-openkill.t -------------------------------------------------------------------------------- /testcases/t/119-match.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/119-match.t -------------------------------------------------------------------------------- /testcases/t/120-multiple-cmds.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/120-multiple-cmds.t -------------------------------------------------------------------------------- /testcases/t/121-next-prev.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/121-next-prev.t -------------------------------------------------------------------------------- /testcases/t/122-split.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/122-split.t -------------------------------------------------------------------------------- /testcases/t/124-move.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/124-move.t -------------------------------------------------------------------------------- /testcases/t/126-regress-close.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/126-regress-close.t -------------------------------------------------------------------------------- /testcases/t/127-regress-floating-parent.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/127-regress-floating-parent.t -------------------------------------------------------------------------------- /testcases/t/128-open-order.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/128-open-order.t -------------------------------------------------------------------------------- /testcases/t/129-focus-after-close.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/129-focus-after-close.t -------------------------------------------------------------------------------- /testcases/t/130-close-empty-split.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/130-close-empty-split.t -------------------------------------------------------------------------------- /testcases/t/131-stacking-order.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/131-stacking-order.t -------------------------------------------------------------------------------- /testcases/t/132-move-workspace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/132-move-workspace.t -------------------------------------------------------------------------------- /testcases/t/133-size-hints.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/133-size-hints.t -------------------------------------------------------------------------------- /testcases/t/134-invalid-command.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/134-invalid-command.t -------------------------------------------------------------------------------- /testcases/t/135-floating-focus.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/135-floating-focus.t -------------------------------------------------------------------------------- /testcases/t/136-floating-ws-empty.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/136-floating-ws-empty.t -------------------------------------------------------------------------------- /testcases/t/137-floating-unmap.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/137-floating-unmap.t -------------------------------------------------------------------------------- /testcases/t/138-floating-attach.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/138-floating-attach.t -------------------------------------------------------------------------------- /testcases/t/139-ws-numbers.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/139-ws-numbers.t -------------------------------------------------------------------------------- /testcases/t/140-focus-lost.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/140-focus-lost.t -------------------------------------------------------------------------------- /testcases/t/141-resize.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/141-resize.t -------------------------------------------------------------------------------- /testcases/t/142-regress-move-floating.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/142-regress-move-floating.t -------------------------------------------------------------------------------- /testcases/t/143-regress-floating-restart.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/143-regress-floating-restart.t -------------------------------------------------------------------------------- /testcases/t/144-regress-floating-resize.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/144-regress-floating-resize.t -------------------------------------------------------------------------------- /testcases/t/145-flattening.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/145-flattening.t -------------------------------------------------------------------------------- /testcases/t/146-floating-reinsert.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/146-floating-reinsert.t -------------------------------------------------------------------------------- /testcases/t/147-regress-floatingmove.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/147-regress-floatingmove.t -------------------------------------------------------------------------------- /testcases/t/148-regress-floatingmovews.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/148-regress-floatingmovews.t -------------------------------------------------------------------------------- /testcases/t/150-regress-dock-restart.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/150-regress-dock-restart.t -------------------------------------------------------------------------------- /testcases/t/151-regress-float-size.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/151-regress-float-size.t -------------------------------------------------------------------------------- /testcases/t/152-regress-level-up.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/152-regress-level-up.t -------------------------------------------------------------------------------- /testcases/t/153-floating-originalsize.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/153-floating-originalsize.t -------------------------------------------------------------------------------- /testcases/t/154-regress-multiple-dock.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/154-regress-multiple-dock.t -------------------------------------------------------------------------------- /testcases/t/155-floating-split-size.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/155-floating-split-size.t -------------------------------------------------------------------------------- /testcases/t/156-fullscreen-focus.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/156-fullscreen-focus.t -------------------------------------------------------------------------------- /testcases/t/158-wm_take_focus.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/158-wm_take_focus.t -------------------------------------------------------------------------------- /testcases/t/159-socketpaths.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/159-socketpaths.t -------------------------------------------------------------------------------- /testcases/t/161-regress-borders-restart.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/161-regress-borders-restart.t -------------------------------------------------------------------------------- /testcases/t/162-regress-dock-urgent.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/162-regress-dock-urgent.t -------------------------------------------------------------------------------- /testcases/t/163-wm-state.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/163-wm-state.t -------------------------------------------------------------------------------- /testcases/t/164-kill-win-vs-client.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/164-kill-win-vs-client.t -------------------------------------------------------------------------------- /testcases/t/165-for_window.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/165-for_window.t -------------------------------------------------------------------------------- /testcases/t/166-assign.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/166-assign.t -------------------------------------------------------------------------------- /testcases/t/167-workspace_layout.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/167-workspace_layout.t -------------------------------------------------------------------------------- /testcases/t/168-regress-fullscreen-restart.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/168-regress-fullscreen-restart.t -------------------------------------------------------------------------------- /testcases/t/169-border-toggle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/169-border-toggle.t -------------------------------------------------------------------------------- /testcases/t/170-force_focus_wrapping.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/170-force_focus_wrapping.t -------------------------------------------------------------------------------- /testcases/t/171-config-migrate.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/171-config-migrate.t -------------------------------------------------------------------------------- /testcases/t/172-start-on-named-ws.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/172-start-on-named-ws.t -------------------------------------------------------------------------------- /testcases/t/173-get-marks.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/173-get-marks.t -------------------------------------------------------------------------------- /testcases/t/174-border-config.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/174-border-config.t -------------------------------------------------------------------------------- /testcases/t/175-startup-notification.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/175-startup-notification.t -------------------------------------------------------------------------------- /testcases/t/176-workspace-baf.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/176-workspace-baf.t -------------------------------------------------------------------------------- /testcases/t/177-bar-config.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/177-bar-config.t -------------------------------------------------------------------------------- /testcases/t/178-regress-workspace-open.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/178-regress-workspace-open.t -------------------------------------------------------------------------------- /testcases/t/179-regress-multiple-ws.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/179-regress-multiple-ws.t -------------------------------------------------------------------------------- /testcases/t/180-fd-leaks.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/180-fd-leaks.t -------------------------------------------------------------------------------- /testcases/t/181-regress-float-border.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/181-regress-float-border.t -------------------------------------------------------------------------------- /testcases/t/182-regress-focus-dock.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/182-regress-focus-dock.t -------------------------------------------------------------------------------- /testcases/t/183-config-variables.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/183-config-variables.t -------------------------------------------------------------------------------- /testcases/t/184-regress-float-split-resize.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/184-regress-float-split-resize.t -------------------------------------------------------------------------------- /testcases/t/185-scratchpad.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/185-scratchpad.t -------------------------------------------------------------------------------- /testcases/t/186-regress-assign-focus-parent.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/186-regress-assign-focus-parent.t -------------------------------------------------------------------------------- /testcases/t/187-commands-parser.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/187-commands-parser.t -------------------------------------------------------------------------------- /testcases/t/188-regress-focus-restart.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/188-regress-focus-restart.t -------------------------------------------------------------------------------- /testcases/t/189-floating-constraints.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/189-floating-constraints.t -------------------------------------------------------------------------------- /testcases/t/190-scratchpad-diff-ws.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/190-scratchpad-diff-ws.t -------------------------------------------------------------------------------- /testcases/t/191-resize-levels.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/191-resize-levels.t -------------------------------------------------------------------------------- /testcases/t/192-layout.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/192-layout.t -------------------------------------------------------------------------------- /testcases/t/193-ipc-version.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/193-ipc-version.t -------------------------------------------------------------------------------- /testcases/t/194-regress-floating-size.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/194-regress-floating-size.t -------------------------------------------------------------------------------- /testcases/t/195-net-active-window.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/195-net-active-window.t -------------------------------------------------------------------------------- /testcases/t/196-randr-output-names.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/196-randr-output-names.t -------------------------------------------------------------------------------- /testcases/t/197-regression-move-vanish.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/197-regression-move-vanish.t -------------------------------------------------------------------------------- /testcases/t/198-regression-scratchpad-crash.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/198-regression-scratchpad-crash.t -------------------------------------------------------------------------------- /testcases/t/199-ipc-mode-event.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/199-ipc-mode-event.t -------------------------------------------------------------------------------- /testcases/t/200-urgency-timer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/200-urgency-timer.t -------------------------------------------------------------------------------- /testcases/t/201-config-parser.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/201-config-parser.t -------------------------------------------------------------------------------- /testcases/t/202-scratchpad-criteria.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/202-scratchpad-criteria.t -------------------------------------------------------------------------------- /testcases/t/203-regress-assign-and-move.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/203-regress-assign-and-move.t -------------------------------------------------------------------------------- /testcases/t/204-regress-scratchpad-move.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/204-regress-scratchpad-move.t -------------------------------------------------------------------------------- /testcases/t/205-ipc-windows.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/205-ipc-windows.t -------------------------------------------------------------------------------- /testcases/t/206-fullscreen-scratchpad.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/206-fullscreen-scratchpad.t -------------------------------------------------------------------------------- /testcases/t/207-shmlog.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/207-shmlog.t -------------------------------------------------------------------------------- /testcases/t/208-regress-floating-criteria.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/208-regress-floating-criteria.t -------------------------------------------------------------------------------- /testcases/t/209-ewmh-net-workarea.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/209-ewmh-net-workarea.t -------------------------------------------------------------------------------- /testcases/t/210-mark-unmark.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/210-mark-unmark.t -------------------------------------------------------------------------------- /testcases/t/211-regress-urgency-assign.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/211-regress-urgency-assign.t -------------------------------------------------------------------------------- /testcases/t/212-assign-urgency.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/212-assign-urgency.t -------------------------------------------------------------------------------- /testcases/t/213-layout-restore-simple.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/213-layout-restore-simple.t -------------------------------------------------------------------------------- /testcases/t/214-layout-restore-criteria.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/214-layout-restore-criteria.t -------------------------------------------------------------------------------- /testcases/t/215-layout-restore-crash.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/215-layout-restore-crash.t -------------------------------------------------------------------------------- /testcases/t/216-layout-restore-split-swallows.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/216-layout-restore-split-swallows.t -------------------------------------------------------------------------------- /testcases/t/217-NET_CURRENT_DESKTOP.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/217-NET_CURRENT_DESKTOP.t -------------------------------------------------------------------------------- /testcases/t/218-regress-floating-split.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/218-regress-floating-split.t -------------------------------------------------------------------------------- /testcases/t/219-ipc-window-focus.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/219-ipc-window-focus.t -------------------------------------------------------------------------------- /testcases/t/220-ipc-window-title.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/220-ipc-window-title.t -------------------------------------------------------------------------------- /testcases/t/221-floating-type-hints.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/221-floating-type-hints.t -------------------------------------------------------------------------------- /testcases/t/222-regress-dock-resize.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/222-regress-dock-resize.t -------------------------------------------------------------------------------- /testcases/t/223-net-client-list.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/223-net-client-list.t -------------------------------------------------------------------------------- /testcases/t/224-regress-resize-branch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/224-regress-resize-branch.t -------------------------------------------------------------------------------- /testcases/t/225-ipc-window-fullscreen.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/225-ipc-window-fullscreen.t -------------------------------------------------------------------------------- /testcases/t/226-internal-workspaces.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/226-internal-workspaces.t -------------------------------------------------------------------------------- /testcases/t/227-ipc-workspace-empty.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/227-ipc-workspace-empty.t -------------------------------------------------------------------------------- /testcases/t/228-border-widths.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/228-border-widths.t -------------------------------------------------------------------------------- /testcases/t/229-cleanup-tmpdir.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/229-cleanup-tmpdir.t -------------------------------------------------------------------------------- /testcases/t/230-floating-fullscreen-restart.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/230-floating-fullscreen-restart.t -------------------------------------------------------------------------------- /testcases/t/231-ipc-floating-event.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/231-ipc-floating-event.t -------------------------------------------------------------------------------- /testcases/t/232-cmd-move-criteria.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/232-cmd-move-criteria.t -------------------------------------------------------------------------------- /testcases/t/233-regress-manage-focus-unmapped.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/233-regress-manage-focus-unmapped.t -------------------------------------------------------------------------------- /testcases/t/234-ewmh-desktop-names.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/234-ewmh-desktop-names.t -------------------------------------------------------------------------------- /testcases/t/235-check-config-no-x.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/235-check-config-no-x.t -------------------------------------------------------------------------------- /testcases/t/236-floating-focus-raise.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/236-floating-focus-raise.t -------------------------------------------------------------------------------- /testcases/t/237-regress-assign-focus.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/237-regress-assign-focus.t -------------------------------------------------------------------------------- /testcases/t/238-ipc-binding-event.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/238-ipc-binding-event.t -------------------------------------------------------------------------------- /testcases/t/239-net-close-window-request.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/239-net-close-window-request.t -------------------------------------------------------------------------------- /testcases/t/240-focus-on-window-activation.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/240-focus-on-window-activation.t -------------------------------------------------------------------------------- /testcases/t/241-consistent-center.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/241-consistent-center.t -------------------------------------------------------------------------------- /testcases/t/242-no-focus.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/242-no-focus.t -------------------------------------------------------------------------------- /testcases/t/243-move-to-mark.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/243-move-to-mark.t -------------------------------------------------------------------------------- /testcases/t/244-new-workspace-floating-enable-center.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/244-new-workspace-floating-enable-center.t -------------------------------------------------------------------------------- /testcases/t/245-move-position-mouse.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/245-move-position-mouse.t -------------------------------------------------------------------------------- /testcases/t/246-window-decoration-focus.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/246-window-decoration-focus.t -------------------------------------------------------------------------------- /testcases/t/247-config-line-continuation.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/247-config-line-continuation.t -------------------------------------------------------------------------------- /testcases/t/248-regress-urgency-clear.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/248-regress-urgency-clear.t -------------------------------------------------------------------------------- /testcases/t/249-layout-restore-floating.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/249-layout-restore-floating.t -------------------------------------------------------------------------------- /testcases/t/250-layout-restore-multiple-criteria.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/250-layout-restore-multiple-criteria.t -------------------------------------------------------------------------------- /testcases/t/251-command-criteria-focused.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/251-command-criteria-focused.t -------------------------------------------------------------------------------- /testcases/t/252-floating-size.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/252-floating-size.t -------------------------------------------------------------------------------- /testcases/t/253-multiple-net-wm-state-atoms.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/253-multiple-net-wm-state-atoms.t -------------------------------------------------------------------------------- /testcases/t/254-move-to-output-with-criteria.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/254-move-to-output-with-criteria.t -------------------------------------------------------------------------------- /testcases/t/255-multiple-marks.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/255-multiple-marks.t -------------------------------------------------------------------------------- /testcases/t/256-no-auto-back-and-forth.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/256-no-auto-back-and-forth.t -------------------------------------------------------------------------------- /testcases/t/257-keypress-group1-fallback.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/257-keypress-group1-fallback.t -------------------------------------------------------------------------------- /testcases/t/258-keypress-release.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/258-keypress-release.t -------------------------------------------------------------------------------- /testcases/t/259-net-wm-user-time.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/259-net-wm-user-time.t -------------------------------------------------------------------------------- /testcases/t/260-invalid-criteria.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/260-invalid-criteria.t -------------------------------------------------------------------------------- /testcases/t/261-match-con_id-con_mark-combinations.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/261-match-con_id-con_mark-combinations.t -------------------------------------------------------------------------------- /testcases/t/262-config-validation.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/262-config-validation.t -------------------------------------------------------------------------------- /testcases/t/263-config-reload-reverts-bind-mode.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/263-config-reload-reverts-bind-mode.t -------------------------------------------------------------------------------- /testcases/t/264-dock-criteria.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/264-dock-criteria.t -------------------------------------------------------------------------------- /testcases/t/265-ipc-mark.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/265-ipc-mark.t -------------------------------------------------------------------------------- /testcases/t/266-net-moveresize-window.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/266-net-moveresize-window.t -------------------------------------------------------------------------------- /testcases/t/267-regress-mark-restart.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/267-regress-mark-restart.t -------------------------------------------------------------------------------- /testcases/t/268-ipc-config.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/268-ipc-config.t -------------------------------------------------------------------------------- /testcases/t/269-focus-stack-above.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/269-focus-stack-above.t -------------------------------------------------------------------------------- /testcases/t/270-config-no-newline-end.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/270-config-no-newline-end.t -------------------------------------------------------------------------------- /testcases/t/271-for_window_tilingfloating.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/271-for_window_tilingfloating.t -------------------------------------------------------------------------------- /testcases/t/272-regress-focus-assign.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/272-regress-focus-assign.t -------------------------------------------------------------------------------- /testcases/t/273-regress-focus-toggle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/273-regress-focus-toggle.t -------------------------------------------------------------------------------- /testcases/t/274-move-branch-position.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/274-move-branch-position.t -------------------------------------------------------------------------------- /testcases/t/275-ipc-window-close.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/275-ipc-window-close.t -------------------------------------------------------------------------------- /testcases/t/276-ipc-window-move.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/276-ipc-window-move.t -------------------------------------------------------------------------------- /testcases/t/277-ipc-window-urgent.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/277-ipc-window-urgent.t -------------------------------------------------------------------------------- /testcases/t/278-layout-restore-output.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/278-layout-restore-output.t -------------------------------------------------------------------------------- /testcases/t/279-regress-default-floating-border.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/279-regress-default-floating-border.t -------------------------------------------------------------------------------- /testcases/t/280-wm-class-change-handler.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/280-wm-class-change-handler.t -------------------------------------------------------------------------------- /testcases/t/281-regress-reload-bindsym.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/281-regress-reload-bindsym.t -------------------------------------------------------------------------------- /testcases/t/282-tabbed-floating-disable-crash.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/282-tabbed-floating-disable-crash.t -------------------------------------------------------------------------------- /testcases/t/283-net-wm-state-hidden.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/283-net-wm-state-hidden.t -------------------------------------------------------------------------------- /testcases/t/284-ewmh-visible-name.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/284-ewmh-visible-name.t -------------------------------------------------------------------------------- /testcases/t/285-sticky.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/285-sticky.t -------------------------------------------------------------------------------- /testcases/t/286-root-window-mouse-binding.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/286-root-window-mouse-binding.t -------------------------------------------------------------------------------- /testcases/t/287-edge-borders.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/287-edge-borders.t -------------------------------------------------------------------------------- /testcases/t/288-i3-floating-window-atom.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/288-i3-floating-window-atom.t -------------------------------------------------------------------------------- /testcases/t/289-ipc-shutdown-event.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/289-ipc-shutdown-event.t -------------------------------------------------------------------------------- /testcases/t/290-keypress-numlock.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/290-keypress-numlock.t -------------------------------------------------------------------------------- /testcases/t/291-swap.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/291-swap.t -------------------------------------------------------------------------------- /testcases/t/292-regress-layout-toggle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/292-regress-layout-toggle.t -------------------------------------------------------------------------------- /testcases/t/293-focus-follows-mouse.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/293-focus-follows-mouse.t -------------------------------------------------------------------------------- /testcases/t/293-sticky-output-crash.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/293-sticky-output-crash.t -------------------------------------------------------------------------------- /testcases/t/294-focus-order.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/294-focus-order.t -------------------------------------------------------------------------------- /testcases/t/294-update-ewmh-atoms.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/294-update-ewmh-atoms.t -------------------------------------------------------------------------------- /testcases/t/295-net-wm-state-focused.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/295-net-wm-state-focused.t -------------------------------------------------------------------------------- /testcases/t/296-regress-focus-behind-fullscreen-floating.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/296-regress-focus-behind-fullscreen-floating.t -------------------------------------------------------------------------------- /testcases/t/297-assign-workspace-to-output.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/297-assign-workspace-to-output.t -------------------------------------------------------------------------------- /testcases/t/297-scroll-tabbed.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/297-scroll-tabbed.t -------------------------------------------------------------------------------- /testcases/t/298-ipc-misbehaving-connection.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/298-ipc-misbehaving-connection.t -------------------------------------------------------------------------------- /testcases/t/299-regress-scratchpad-focus.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/299-regress-scratchpad-focus.t -------------------------------------------------------------------------------- /testcases/t/300-restart-non-utf8.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/300-restart-non-utf8.t -------------------------------------------------------------------------------- /testcases/t/301-shape.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/301-shape.t -------------------------------------------------------------------------------- /testcases/t/302-tree.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/302-tree.t -------------------------------------------------------------------------------- /testcases/t/303-regress-move-floating.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/303-regress-move-floating.t -------------------------------------------------------------------------------- /testcases/t/304-ipc-workspace-init.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/304-ipc-workspace-init.t -------------------------------------------------------------------------------- /testcases/t/305-restart-reply.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/305-restart-reply.t -------------------------------------------------------------------------------- /testcases/t/306-move-to-parent.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/306-move-to-parent.t -------------------------------------------------------------------------------- /testcases/t/307-focus-next-prev.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/307-focus-next-prev.t -------------------------------------------------------------------------------- /testcases/t/308-focus_wrapping.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/308-focus_wrapping.t -------------------------------------------------------------------------------- /testcases/t/309-crash-move-parent.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/309-crash-move-parent.t -------------------------------------------------------------------------------- /testcases/t/310-client-message-sticky.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/310-client-message-sticky.t -------------------------------------------------------------------------------- /testcases/t/311-get-binding-modes.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/311-get-binding-modes.t -------------------------------------------------------------------------------- /testcases/t/312-regress-layout-default.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/312-regress-layout-default.t -------------------------------------------------------------------------------- /testcases/t/313-include.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/313-include.t -------------------------------------------------------------------------------- /testcases/t/314-window-icon-padding.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/314-window-icon-padding.t -------------------------------------------------------------------------------- /testcases/t/315-all-criterion.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/315-all-criterion.t -------------------------------------------------------------------------------- /testcases/t/315-long-commands.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/315-long-commands.t -------------------------------------------------------------------------------- /testcases/t/316-drag-container.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/316-drag-container.t -------------------------------------------------------------------------------- /testcases/t/316-transient-for-loop.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/316-transient-for-loop.t -------------------------------------------------------------------------------- /testcases/t/317-bar-config-font-order.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/317-bar-config-font-order.t -------------------------------------------------------------------------------- /testcases/t/317-bar-output-trailing-space.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/317-bar-output-trailing-space.t -------------------------------------------------------------------------------- /testcases/t/318-i3-dmenu-desktop.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/318-i3-dmenu-desktop.t -------------------------------------------------------------------------------- /testcases/t/319-gaps.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/319-gaps.t -------------------------------------------------------------------------------- /testcases/t/500-multi-monitor.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/500-multi-monitor.t -------------------------------------------------------------------------------- /testcases/t/501-scratchpad.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/501-scratchpad.t -------------------------------------------------------------------------------- /testcases/t/502-focus-output.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/502-focus-output.t -------------------------------------------------------------------------------- /testcases/t/503-workspace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/503-workspace.t -------------------------------------------------------------------------------- /testcases/t/504-move-workspace-to-output.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/504-move-workspace-to-output.t -------------------------------------------------------------------------------- /testcases/t/505-scratchpad-resolution.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/505-scratchpad-resolution.t -------------------------------------------------------------------------------- /testcases/t/506-focus-right.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/506-focus-right.t -------------------------------------------------------------------------------- /testcases/t/507-workspace-move-crash.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/507-workspace-move-crash.t -------------------------------------------------------------------------------- /testcases/t/509-workspace_layout.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/509-workspace_layout.t -------------------------------------------------------------------------------- /testcases/t/510-focus-across-outputs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/510-focus-across-outputs.t -------------------------------------------------------------------------------- /testcases/t/511-scratchpad-configure-request.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/511-scratchpad-configure-request.t -------------------------------------------------------------------------------- /testcases/t/512-move-wraps.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/512-move-wraps.t -------------------------------------------------------------------------------- /testcases/t/513-move-workspace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/513-move-workspace.t -------------------------------------------------------------------------------- /testcases/t/514-ipc-workspace-multi-monitor.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/514-ipc-workspace-multi-monitor.t -------------------------------------------------------------------------------- /testcases/t/515-create-workspace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/515-create-workspace.t -------------------------------------------------------------------------------- /testcases/t/516-move.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/516-move.t -------------------------------------------------------------------------------- /testcases/t/518-interpret-workspace-numbers.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/518-interpret-workspace-numbers.t -------------------------------------------------------------------------------- /testcases/t/519-mouse-warping.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/519-mouse-warping.t -------------------------------------------------------------------------------- /testcases/t/520-regress-focus-direction-floating.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/520-regress-focus-direction-floating.t -------------------------------------------------------------------------------- /testcases/t/521-ewmh-desktop-viewport.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/521-ewmh-desktop-viewport.t -------------------------------------------------------------------------------- /testcases/t/522-rename-assigned-workspace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/522-rename-assigned-workspace.t -------------------------------------------------------------------------------- /testcases/t/523-move-position-center.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/523-move-position-center.t -------------------------------------------------------------------------------- /testcases/t/524-move.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/524-move.t -------------------------------------------------------------------------------- /testcases/t/525-i3bar-mouse-bindings.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/525-i3bar-mouse-bindings.t -------------------------------------------------------------------------------- /testcases/t/526-reconfigure-dock.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/526-reconfigure-dock.t -------------------------------------------------------------------------------- /testcases/t/527-focus-fallback.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/527-focus-fallback.t -------------------------------------------------------------------------------- /testcases/t/528-workspace-next-prev-reversed.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/528-workspace-next-prev-reversed.t -------------------------------------------------------------------------------- /testcases/t/529-net-wm-desktop.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/529-net-wm-desktop.t -------------------------------------------------------------------------------- /testcases/t/530-bug-2229.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/530-bug-2229.t -------------------------------------------------------------------------------- /testcases/t/531-fullscreen-on-given-output.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/531-fullscreen-on-given-output.t -------------------------------------------------------------------------------- /testcases/t/532-xresources.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/532-xresources.t -------------------------------------------------------------------------------- /testcases/t/533-randr15.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/533-randr15.t -------------------------------------------------------------------------------- /testcases/t/534-dont-warp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/534-dont-warp.t -------------------------------------------------------------------------------- /testcases/t/535-workspace-next-prev.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/535-workspace-next-prev.t -------------------------------------------------------------------------------- /testcases/t/536-net-wm-desktop_mm.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/536-net-wm-desktop_mm.t -------------------------------------------------------------------------------- /testcases/t/537-move-single-to-output.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/537-move-single-to-output.t -------------------------------------------------------------------------------- /testcases/t/538-i3bar-primary-output.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/538-i3bar-primary-output.t -------------------------------------------------------------------------------- /testcases/t/539-disable_focus_wrapping.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/539-disable_focus_wrapping.t -------------------------------------------------------------------------------- /testcases/t/540-sigterm-cleanup.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/540-sigterm-cleanup.t -------------------------------------------------------------------------------- /testcases/t/541-resize-set-tiling.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/541-resize-set-tiling.t -------------------------------------------------------------------------------- /testcases/t/542-layout-restore-remanage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/542-layout-restore-remanage.t -------------------------------------------------------------------------------- /testcases/t/543-move-workspace-to-multiple-outputs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/543-move-workspace-to-multiple-outputs.t -------------------------------------------------------------------------------- /testcases/t/544-focus-multiple-outputs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/544-focus-multiple-outputs.t -------------------------------------------------------------------------------- /testcases/t/545-i3-registration.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/545-i3-registration.t -------------------------------------------------------------------------------- /testcases/t/546-empty-bindcommand.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/546-empty-bindcommand.t -------------------------------------------------------------------------------- /testcases/t/547-explicit-mode-default.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/547-explicit-mode-default.t -------------------------------------------------------------------------------- /testcases/t/547-nested-variables.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/547-nested-variables.t -------------------------------------------------------------------------------- /testcases/t/548-motif-hints.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/548-motif-hints.t -------------------------------------------------------------------------------- /testcases/t/549-focus-wrapping-gaps.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/t/549-focus-wrapping-gaps.t -------------------------------------------------------------------------------- /testcases/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/testcases/valgrind.supp -------------------------------------------------------------------------------- /travis/check-safe-wrappers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/travis/check-safe-wrappers.sh -------------------------------------------------------------------------------- /travis/check-spelling.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/travis/check-spelling.pl -------------------------------------------------------------------------------- /travis/debian-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/travis/debian-build.sh -------------------------------------------------------------------------------- /travis/deploy-github-pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/travis/deploy-github-pages.sh -------------------------------------------------------------------------------- /travis/docker-build-and-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/travis/docker-build-and-push.sh -------------------------------------------------------------------------------- /travis/docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/travis/docs.sh -------------------------------------------------------------------------------- /travis/ha.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/travis/ha.sh -------------------------------------------------------------------------------- /travis/push-balto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/travis/push-balto.sh -------------------------------------------------------------------------------- /travis/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/travis/run-tests.sh -------------------------------------------------------------------------------- /travis/skip-pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/travis/skip-pkg.sh -------------------------------------------------------------------------------- /travis/travis-base-386.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/travis/travis-base-386.Dockerfile -------------------------------------------------------------------------------- /travis/travis-base-ubuntu-386.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/travis/travis-base-ubuntu-386.Dockerfile -------------------------------------------------------------------------------- /travis/travis-base-ubuntu.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/travis/travis-base-ubuntu.Dockerfile -------------------------------------------------------------------------------- /travis/travis-base.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/i3-gaps-rounded/HEAD/travis/travis-base.Dockerfile --------------------------------------------------------------------------------