This commit is contained in:
Sakooooo 2024-09-04 14:13:16 +04:00
parent 70e03d38c2
commit bb4540ccfc
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -1059,7 +1059,30 @@ Will configure later, (use elfeed protocol ok ty)
** Matrix ** Matrix
Ill set this up later as well Ill set this up later as well
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package ement) (use-package ement
:commands ement-connect
:custom
(ement-notify-dbus-p nil) ;; Turn off notifications
(ement-sessions-file "~/.cache/ement.el")
(ement-room-list-default-keys
'(;; Group all invitations (this group will appear first since the rooms are
;; already sorted first).
((membership :status 'invite))
;; Group all left rooms (this group will appear last, because the rooms are already
;; sorted last).
((membership :status 'leave))
;; Group all favorite rooms, which are already sorted first.
(favourite)
;; Group all low-priority rooms, which are already sorted last.
(low-priority)
;; Group other rooms which are unread.
(unread)
(people)
freshness)))
#+end_src #+end_src
** Subsonic ** Subsonic
#+begin_src emacs-lisp #+begin_src emacs-lisp