This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # rotate-sibling-frames-cmd.janet | |
| # | |
| # This script provides a new command :rotate-sibling-frames for Jwno v0.9.11. | |
| # The command "rotates" the siblings of the current frame (including the current | |
| # frame itself). Say we have a frame laid out like this, and sub-frame 1 is active: | |
| # | |
| # +---+---+---+ | |
| # | 1 | 2 | 3 | | |
| # +-^-+---+---+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # ui-hint-crash-fix.janet | |
| # | |
| # A simple fix for Jwno (https://github.com/agent-kilo/jwno) 0.9.11, to | |
| # prevent multiple :ui-hint commands from running simultaneously, which | |
| # may cause Jwno to crash or leak memory. | |
| # | |
| # To enable the fix, put this file alongside your config file, and | |
| # | |
| # (import ui-hint-crash-fix) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # work-area-fix.janet | |
| # | |
| # A simple fix for Jwno (https://github.com/agent-kilo/jwno) 0.9.10, to | |
| # handle the WM_SETTINGCHANGE message, which is sent when the Taskbar or | |
| # other third-party bars change the monitor work areas. | |
| # | |
| # To enable it, put this file alongside your config file, and | |
| # | |
| # (import work-area-fix) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ==== scroll.janet ==== | |
| # | |
| # A quick-and-dirty implementation of "scrolling" window | |
| # managment, like PaperWM, for Jwno: https://github.com/agent-kilo/jwno. | |
| # | |
| # To test it out, put this file alongside your jwno-config.janet, | |
| # and add these in your config: | |
| # | |
| # (import scroll) | |
| # (def scroll (scroll/scroll jwno/context)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # A quick-and-dirty hack to manage WSLg windows with Jwno | |
| # (https://github.com/agent-kilo/jwno) | |
| # | |
| # To try it out, save this script to the same directory where | |
| # your Jwno config resides, and do this in Jwno's REPL: | |
| # | |
| # (import wslg-transform) | |
| # (def wt (wslg-transform/wslg-transform jwno/context)) | |
| # (:enable wt) |