mirror of
https://github.com/ebeem/guile-swayer.git
synced 2024-12-26 21:59:03 +01:00
fix documentation
This commit is contained in:
parent
d2ba3b7a8c
commit
d5a0d68c0b
2 changed files with 14 additions and 6 deletions
|
@ -1,5 +1,13 @@
|
||||||
;; use example:
|
;; The auto-reload module is designed to automatically reload Sway
|
||||||
;; NOTE: use full path for your home, don't use tilde (~)
|
;; 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-configure #:directories '("/home/ebeem/.config/sway/"))
|
||||||
;; (auto-reload-init)
|
;; (auto-reload-init)
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
;; use example:
|
;; use example:
|
||||||
|
|
||||||
;; (workspace-grid-configure #:rows 2 #:columns
|
;; (workspace-grid-configure #:rows 2 #:columns 2 #:workspaces
|
||||||
;; '(("ws-o1-1" "ws-o1-2" "ws-o1-3" "ws-o1-3")
|
;; '(("ws-o1-1" "ws-o1-2" "ws-o1-3" "ws-o1-4")
|
||||||
;; ("ws-o2-1" "ws-o2-2" "ws-o2-3" "ws-o2-3")
|
;; ("ws-o2-1" "ws-o2-2" "ws-o2-3" "ws-o2-4")
|
||||||
;; ("ws-o3-1" "ws-o3-2" "ws-o3-3" "ws-o3-3")))
|
;; ("ws-o3-1" "ws-o3-2" "ws-o3-3" "ws-o3-4")))
|
||||||
;; (workspace-grid-init)
|
;; (workspace-grid-init)
|
||||||
|
|
||||||
(define-module (modules workspace-grid)
|
(define-module (modules workspace-grid)
|
||||||
|
|
Loading…
Reference in a new issue