From: Luther Thompson <lutheroto@gmail.com>
To: help-guix@gnu.org
Subject: Issues with the new xorg-configuration
Date: Wed, 3 Apr 2019 17:11:23 -0400 [thread overview]
Message-ID: <20190403171123.782c187e@gmail.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 580 bytes --]
After last week's changes to how xorg configuration works, but I still
have some problems with the touchpad. Essentially, the extra-config
seems to have no effect.
1. The Tapping option does not work.
2. The HorizontalScrolling option does not work. Strangely, the
documentation[0] says that "HorizontalScrolling" *disables* horizontal
scrolling. I've tried it both ways.
3. The DisableWhileTyping option does not work. This actually never
worked, even before the change.
I've attached my config.scm file.
[0] https://www.mankier.com/4/libinput#Configuration_Details
Luther
[-- Attachment #2: config.scm --]
[-- Type: text/x-scheme, Size: 3105 bytes --]
(use-modules ((gnu) #:select (use-package-modules use-service-modules))
((gnu bootloader) #:select (bootloader-configuration))
((gnu bootloader grub) #:select (grub-bootloader))
((gnu packages base) #:select (coreutils))
((gnu packages android) #:select (android-udev-rules))
((gnu services base)
#:select
(guix-configuration
guix-service-type
udev-configuration
udev-configuration-rules
udev-service-type))
((gnu services xorg) #:select (slim-service-type))
((gnu system file-systems)
#:select (file-system %base-file-systems))
((gnu system keyboard) #:select (keyboard-layout))
((gnu system nss) #:select (%mdns-host-lookup-nss))
((guix gexp) #:select (file-append)))
(use-service-modules desktop)
(use-package-modules certs gnome)
(operating-system
(host-name "targaryen")
(timezone "America/New_York")
(keyboard-layout (keyboard-layout "us" "dvorak"))
(bootloader
(bootloader-configuration (bootloader grub-bootloader)
(target "/dev/sda")
(keyboard-layout keyboard-layout)))
(file-systems
(cons
(file-system (device "my-root")
(mount-point "/")
(type "ext4")
(title 'label))
%base-file-systems))
;; Needed to connect to a phone.
(groups (cons (user-group (name "adbusers") (system? #t)) %base-groups))
(users
(cons
(user-account (name "luther")
(comment "Luther Thompson")
(group "users")
(supplementary-groups
'("wheel" "netdev" "audio" "video" "cdrom" "adbusers"))
(home-directory "/home/luther"))
%base-user-accounts))
;; This is where we specify system-wide packages.
(packages (cons* nss-certs ;for HTTPS access
gvfs ;for user mounts
%base-packages))
(services
(cons* (service gnome-desktop-service-type)
(extra-special-file "/usr/bin/env" (file-append coreutils "/bin/env"))
(modify-services %desktop-services
(udev-service-type config =>
(udev-configuration (inherit config)
(rules
(cons*
android-udev-rules
(udev-configuration-rules
config)))))
(slim-service-type config =>
(slim-configuration (inherit config)
(xorg-configuration
(xorg-configuration
(keyboard-layout
keyboard-layout)
(extra-config
'(
"Section \"InputClass\"
Identifier \"Touchpads\"
Driver \"libinput\"
MatchIsTouchpad \"on\"
Option \"DisableWhileTyping\" \"on\"
Option \"HorizontalScrolling\" \"off\"
Option \"Tapping\" \"on\"
EndSection"))))))
(guix-service-type config =>
(guix-configuration
(inherit config)
(substitute-urls
'("https://ci.guix.info"
"https://berlin.guixsd.org"
"https://mirror.hydra.gnu.org"
"https://hydra.gnu.org")))))))
;; Allow resolution of '.local' host names with mDNS.
(name-service-switch %mdns-host-lookup-nss)
(swap-devices '("/swapfile")))
;; Local Variables:
;; eval: (guix-devel-mode 1)
;; End:
next reply other threads:[~2019-04-03 21:11 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-03 21:11 Luther Thompson [this message]
2019-04-04 13:17 ` Issues with the new xorg-configuration znavko
2019-04-04 18:47 ` znavko
2019-04-04 19:49 ` Luther Thompson
-- strict thread matches above, loose matches on Subject: below --
2019-04-05 19:56 znavko
2019-04-06 19:41 ` Luther Thompson
2019-04-08 23:48 ` Luther Thompson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190403171123.782c187e@gmail.com \
--to=lutheroto@gmail.com \
--cc=help-guix@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).