logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

papersway - PaperWM-like scrollable tiling window management for Sway/i3wm

Author

       Sean Whitton <spwhitton@spwhitton.name>

Description

       This is an implementation of PaperWM-like scrollable tiling window management for Sway/i3wm.  If you like
       Sway/i3wm's commitments to stability, avoiding scope creep etc. but dislike the window management model,
       papersway is an alternative.

Name

       papersway - PaperWM-like scrollable tiling window management for Sway/i3wm

Options

--i3status
           Start a background instance of i3status, filter and print its output.

       --debug
           Enable some debug printing.

See Also

       <https://github.com/paperwm/PaperWM>, i3status(1), sway(5)

Synopsis

papersway [--i3status]

Usage

       Here we discuss how to integrate papersway into your existing Sway/i3wm configuration file, usually found
       at ~/.config/sway/config or ~/.config/i3/config, as appropriate.

   Activation
       The recommended way to activate papersway is by using it as your bar command:

           bar {
               status_command papersway --i3status

               # [ .. further bar options .. ]
           }

       This  ensures  that  you  can  see a visual representation of your paper workspaces, which will be useful
       while getting the hang of papersway.

   Bindingkeys
       Here are some sample bindings to get you started.

           set $mod Mod4

           bindsym $mod+Left exec papersway-msg focus left
           bindsym $mod+Down focus down
           bindsym $mod+Up focus up
           bindsym $mod+Right exec papersway-msg focus right

           bindsym $mod+Shift+Left exec papersway-msg move left
           bindsym $mod+Shift+Down move down
           bindsym $mod+Shift+Up move up
           bindsym $mod+Shift+Right move exec papersway-msg right

           bindsym $mod+f exec papersway-msg monocle toggle
           bindsym $mod+o exec papersway-msg other column

           bindsym $mod+a exec papersway-msg fresh-workspace
           bindsym $mod+n exec papersway-msg fresh-workspace send
           bindsym $mod+t exec papersway-msg fresh-workspace take

           bindsym $mod+e exec papersway-msg absorb_expel left
           bindsym $mod+r exec papersway-msg absorb_expel right

           bindsym $mod+minus exec papersway-msg cols decr
           bindsym $mod+equal exec papersway-msg cols incr

           bindsym $mod+u exec papersway-msg workspace prev
           bindsym $mod+i exec papersway-msg workspace next
           bindsym $mod+Shift+u exec papersway-msg move_workspace prev
           bindsym $mod+Shift+i exec papersway-msg move_workspace next

           bindsym $mod+c [con_mark=caffeinated] inhibit_idle none; \
               inhibit_idle open, mark caffeinated
           bindsym $mod+Shift+c [con_mark=caffeinated] inhibit_idle none, \
               mark --toggle caffeinated
           for_window [con_mark=caffeinated] inhibit_idle open

       Delete any bindings you have for the split, splith, splitv, splitt, layout, focusparent and focuschild
       commands, to avoid confusion (on the parts of both yourself and of papersway).

   Otherconfiguration
       •   Set focus_wrapping to no.

       •   Leave workspace_layout with its default value, default.

Version

       version 1.004

See Also