fix(exwm): parentheses

This commit is contained in:
Pavel Korytov 2021-11-21 10:24:19 +03:00
parent 45a5439661
commit 96175214c6
3 changed files with 13 additions and 7 deletions

View file

@ -15,6 +15,8 @@
"xinput" "xinput"
"xgamma" "xgamma"
"xrandr" "xrandr"
"gnome-themes-extra"
"xsettingsd" "xsettingsd"
"gnome-themes-standard"
"papirus-icon-theme" "papirus-icon-theme"
"matcha-theme")) "matcha-theme"))

View file

@ -225,7 +225,7 @@ _=_: Balance "
my/exwm-monitor-workspace)) my/exwm-monitor-workspace))
(focus-follows-mouse nil) (focus-follows-mouse nil)
(mouse-autoselect-window nil)) (mouse-autoselect-window nil))
;; (exwm-workspace-switch other))) (exwm-workspace-switch other)))
(setq exwm-input-prefix-keys (setq exwm-input-prefix-keys
`(?\C-x `(?\C-x
?\C-w ?\C-w

View file

@ -215,11 +215,13 @@ Xft.dpi: <<get-dpi()>>
** Themes ** Themes
A few programs I use to customize the apperance are listed below. A few programs I use to customize the apperance are listed below.
| Guix dependency | Description | | Guix dependency | Description |
|--------------------+-------------------------| |-----------------------+-------------------------|
| matcha-theme | My preferred GTK theme | | matcha-theme | My preferred GTK theme |
| papirus-icon-theme | My preferred Icon theme | | papirus-icon-theme | My preferred Icon theme |
| xsettingsd | X11 settings daemon | | gnome-themes-standard | |
| xsettingsd | X11 settings daemon |
| gnome-themes-extra | |
[[https://github.com/derat/xsettingsd][xsettingsd]] is a lightweight daemon which configures X11 applications. It is launched with shepherd in the [[*Services][Services]] section. [[https://github.com/derat/xsettingsd][xsettingsd]] is a lightweight daemon which configures X11 applications. It is launched with shepherd in the [[*Services][Services]] section.
@ -446,7 +448,7 @@ Switch to the opposite monitor. For now, this works only for two monitors becaus
my/exwm-monitor-workspace)) my/exwm-monitor-workspace))
(focus-follows-mouse nil) (focus-follows-mouse nil)
(mouse-autoselect-window nil)) (mouse-autoselect-window nil))
;; (exwm-workspace-switch other))) (exwm-workspace-switch other)))
#+end_src #+end_src
** Switching buffers ** Switching buffers
A single perspective usually has only a handful of EXWM buffers, so here is a function to cycle them. A single perspective usually has only a handful of EXWM buffers, so here is a function to cycle them.
@ -616,6 +618,8 @@ And keybindings that are available in both =char-mode= and =line-mode=:
;; Basic controls ;; Basic controls
(,(kbd "<XF86AudioRaiseVolume>") . ,(my/app-command "ponymix increase 5 --max-volume 150")) (,(kbd "<XF86AudioRaiseVolume>") . ,(my/app-command "ponymix increase 5 --max-volume 150"))
(,(kbd "<XF86AudioLowerVolume>") . ,(my/app-command "ponymix decrease 5 --max-volume 150")) (,(kbd "<XF86AudioLowerVolume>") . ,(my/app-command "ponymix decrease 5 --max-volume 150"))
(,(kbd "<XF86MonBrightnessUp>") . ,(my/app-command "light -A 5"))
(,(kbd "<XF86MonBrightnessDown>") . ,(my/app-command "light -U 5"))
(,(kbd "<XF86AudioMute>") . ,(my/app-command "ponymix toggle")) (,(kbd "<XF86AudioMute>") . ,(my/app-command "ponymix toggle"))
(,(kbd "<XF86AudioPlay>") . ,(my/app-command "mpc toggle")) (,(kbd "<XF86AudioPlay>") . ,(my/app-command "mpc toggle"))