all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* awesome window manager configuration
@ 2019-01-04 12:22 Joshua Branson
  2019-01-04 22:44 ` Carlo Zancanaro
  0 siblings, 1 reply; 2+ messages in thread
From: Joshua Branson @ 2019-01-04 12:22 UTC (permalink / raw)
  To: guix-devel


Hello!

I recently started using the awesome window manager, and I'm curious if
I can help edit the manual a bit.  The current manual does not mention
that to configure the awesome window manager, one must copy the
configuration from
/gnu/store/xmmqxby6bm...-awesome-4.2/etc/xdg/awesome/rc.lua
to "~/.config/awesome/".

My question is for now, can I add that information to the manual?

My second question is what is the long term plan for integrating window
managers with guixSD?  Should be turn all window manager packages into
services?  ie:

#+BEGIN_SRC scheme
(service
  (cons
    (service awesome-service-type
      (awesome-config
        (config-file "/etc/rc.lua")))
    %base-services))
#+END_SRC

Or users could try to use a service to configure awesome...

#+BEGIN_SRC scheme
(service
  (cons
    (service awesome-service-type
      (awesome-config
        (bind-keys
           '(('eject . "eject")
             ('volume-raise . "command to raise volume")
             ('volume-lower . "command to lower volume")
             ))
         (default-layouts
            '("awful.layout.suit.max"
              "awful.layout.suit.tile.left"
              "awful.layout.suit.tile.top"))))
    %base-services))
#+END_SRC


What do you all think?

--
Joshua Branson
Sent from Emacs and Gnus

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-01-04 22:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-04 12:22 awesome window manager configuration Joshua Branson
2019-01-04 22:44 ` Carlo Zancanaro

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.