You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, nice compositor. Today I'm trying it and found something that bother me, I can't set / use monocle layout (both via keybind or via dwl-guile -e).
I have this on my init.scm
(set-keys "s-d" '(dwl:spawn "wofi")
;;; other keybindings
"s-m" 'dwl:monocle
)
I also run :
$ dwl-guile -e "(dwl:monocle)"
The output I got :
Wrong number of arguments to #<procedure dwl:monocle (_)>
Any clue to fix it ? Thanks.
The text was updated successfully, but these errors were encountered:
The dwl:monocle procecure should not be called directly, since it requires a reference to the monitor it should arrange. Instead, do something like this:
;; From the man pages. Add the monocle layout to the list of enabled layouts.
(set-layouts 'monocle "|M|"'dwl:monocle)
;; dwl:set-layout accepts the name of the enabled layout as a string.;; The default layout (tile) is named "default".
(set-keys "s-m"'(dwl:set-layout "monocle"))
I have also updated the man page to include an example of this.
Hello, nice compositor. Today I'm trying it and found something that bother me, I can't set / use monocle layout (both via keybind or via
dwl-guile -e
).I have this on my init.scm
I also run :
The output I got :
Any clue to fix it ? Thanks.
The text was updated successfully, but these errors were encountered: