fix documentation

This commit is contained in:
Almarhoon Ibraheem 2024-06-26 00:02:30 +03:00
parent d2ba3b7a8c
commit d5a0d68c0b
2 changed files with 14 additions and 6 deletions

View file

@ -1,5 +1,13 @@
;; use example:
;; NOTE: use full path for your home, don't use tilde (~)
;; The auto-reload module is designed to automatically reload Sway
;; configuration when changes are detected in specified directories.
;; This module leverages the Sway IPC protocol for reloading and uses
;; inotify for monitoring file system events. The key functions are:
;; auto-reload-configure: Configures the directories to watch for changes.
;; auto-reload-init: Initiates the monitoring of the specified directories
;; and reloads the Sway configuration upon detecting changes.
;; Here's an example of how to use this module:
;; NOTE: use the full path for your home, don't use tilde (~)
;; (auto-reload-configure #:directories '("/home/ebeem/.config/sway/"))
;; (auto-reload-init)

View file

@ -1,9 +1,9 @@
;; use example:
;; (workspace-grid-configure #:rows 2 #:columns
;; '(("ws-o1-1" "ws-o1-2" "ws-o1-3" "ws-o1-3")
;; ("ws-o2-1" "ws-o2-2" "ws-o2-3" "ws-o2-3")
;; ("ws-o3-1" "ws-o3-2" "ws-o3-3" "ws-o3-3")))
;; (workspace-grid-configure #:rows 2 #:columns 2 #:workspaces
;; '(("ws-o1-1" "ws-o1-2" "ws-o1-3" "ws-o1-4")
;; ("ws-o2-1" "ws-o2-2" "ws-o2-3" "ws-o2-4")
;; ("ws-o3-1" "ws-o3-2" "ws-o3-3" "ws-o3-4")))
;; (workspace-grid-init)
(define-module (modules workspace-grid)