Compare commits
9 commits
cc13663326
...
5755831bb6
Author | SHA1 | Date | |
---|---|---|---|
5755831bb6 | |||
98dd7c6966 | |||
d68ecd3086 | |||
c506f51827 | |||
9af2af66b0 | |||
265c55bcda | |||
7d38c4d12a | |||
ee519e1e08 | |||
f2c93c4287 |
7 changed files with 140 additions and 67 deletions
|
@ -43,7 +43,8 @@
|
|||
#:use-module (oni home services xsession)
|
||||
#:use-module (oni home services zsh)
|
||||
#:use-module ((oni packages emacs)
|
||||
#:select (emacs-syncthing-status))
|
||||
#:select (emacs-outli
|
||||
emacs-syncthing-status))
|
||||
#:use-module ((oni packages emacs-config)
|
||||
#:select (emacs-oni-org-roam
|
||||
emacs-oni-vterm
|
||||
|
@ -81,8 +82,6 @@
|
|||
emacs-oni-tramp
|
||||
emacs-oni-embrace
|
||||
emacs-oni-git-commit))
|
||||
#:use-module ((oni packages emacs-outli)
|
||||
#:select (emacs-outli))
|
||||
#:use-module (oni packages hlwm-run-or-raise)
|
||||
#:use-module (oni packages pick-random-wallpaper)
|
||||
#:use-module (oni packages sawfish)
|
||||
|
|
|
@ -88,6 +88,8 @@
|
|||
home-emacs-eros-service-type
|
||||
home-emacs-ace-link-service-type
|
||||
home-emacs-ace-link-configuration
|
||||
home-emacs-ace-link-notmuch-service-type
|
||||
home-emacs-ace-link-notmuch-configuration
|
||||
home-emacs-golden-ratio-service-type
|
||||
home-emacs-pinentry-service-type
|
||||
home-emacs-vterm-service-type
|
||||
|
@ -138,6 +140,7 @@
|
|||
#:use-module ((oni packages emacs)
|
||||
#:select (emacs-inkplate
|
||||
oni-emacs-notmuch
|
||||
emacs-outli
|
||||
emacs-syncthing-status))
|
||||
#:use-module ((oni packages emacs-config)
|
||||
#:select (emacs-oni-org-roam
|
||||
|
@ -202,8 +205,6 @@
|
|||
#:select (shutdown-rofi))
|
||||
#:use-module ((oni packages stumpwm)
|
||||
#:select (stumpwm+swank))
|
||||
#:use-module ((oni packages emacs-outli)
|
||||
#:select (emacs-outli))
|
||||
#:use-module ((oop goops)
|
||||
#:select (make)))
|
||||
|
||||
|
@ -236,30 +237,9 @@
|
|||
'((dnd (shadow . #f))
|
||||
(dock (shadow . #f))))
|
||||
(corner-radius 15)
|
||||
(inactive-opacity 75)
|
||||
(active-opacity 95)
|
||||
(frame-opacity 100)
|
||||
(inactive-opacity-override #t)
|
||||
(opacity-rule
|
||||
'("100:name *?= '(Meeting) | Microsoft Teams'"
|
||||
"100:name *?= 'freerdp'"))
|
||||
(blur-background #t)
|
||||
(blur-background-frame #t)
|
||||
(blur
|
||||
'((method . "dual_kawase")
|
||||
(strength . 6.9)))
|
||||
(blur-background-fixed #t)
|
||||
(blur-background-exclude
|
||||
'("name *= 'rofi'"
|
||||
"class_g = 'i3lock'"))
|
||||
(focus-exclude
|
||||
'("name *= 'rofi'"
|
||||
"class_g = 'i3lock'"))
|
||||
(fading #t)
|
||||
(fade-exclude
|
||||
`("class_g = 'i3lock'"))
|
||||
(fade-in-step 3)
|
||||
(fade-out-step 3))))
|
||||
(blur-background #f)
|
||||
(blur-background-frame #f)
|
||||
(fading #f))))
|
||||
|
||||
(define my-emacs emacs-next-tree-sitter)
|
||||
|
||||
|
@ -445,6 +425,9 @@
|
|||
(default-key "C-S-e")
|
||||
(goto-address-key "C-S-e")
|
||||
(org-mode-key "C-S-e")))
|
||||
(service home-emacs-ace-link-notmuch-service-type
|
||||
(home-emacs-ace-link-notmuch-configuration
|
||||
(default-key "C-S-e")))
|
||||
(service home-emacs-golden-ratio-service-type)
|
||||
(service home-emacs-pinentry-service-type)
|
||||
(service home-emacs-vterm-service-type
|
||||
|
|
|
@ -36,7 +36,8 @@
|
|||
#:select (package?))
|
||||
#:use-module ((oni packages emacs)
|
||||
#:select (emacs-yasnippet-capf
|
||||
emacs-golden-ratio))
|
||||
emacs-golden-ratio
|
||||
emacs-ace-link-notmuch))
|
||||
|
||||
#:export (home-emacs-service-type
|
||||
home-emacs-configuration
|
||||
|
@ -56,6 +57,9 @@
|
|||
home-emacs-ace-link-service-type
|
||||
home-emacs-ace-link-configuration
|
||||
|
||||
home-emacs-ace-link-notmuch-service-type
|
||||
home-emacs-ace-link-notmuch-configuration
|
||||
|
||||
home-emacs-golden-ratio-service-type
|
||||
home-emacs-golden-ratio-configuration
|
||||
|
||||
|
@ -325,6 +329,47 @@
|
|||
(default-value (home-emacs-ace-link-configuration))
|
||||
(description "Install and configure emacs-ace-link.")))
|
||||
|
||||
;;; Emacs Ace-link notmuch
|
||||
|
||||
(define-configuration/no-serialization home-emacs-ace-link-notmuch-configuration
|
||||
(package
|
||||
(package emacs-ace-link-notmuch)
|
||||
"Package to use for setting emacs-ace-link-notmuch.")
|
||||
(default-key
|
||||
(string "o")
|
||||
"Key to use as the default keybinding.")
|
||||
(configurations
|
||||
(text-config '())
|
||||
"Configuration for emacs-ace-link-notmuch."))
|
||||
|
||||
(define (add-emacs-ace-link-notmuch config)
|
||||
(home-emacs-extension
|
||||
(configurations
|
||||
(append
|
||||
(list (mixed-text-file "ace-link-notmuch-config"
|
||||
";;;;; ace-link-notmuch-config starts here.\n"
|
||||
(format #f "(ace-link-notmuch-setup-default (kbd ~s))~%"
|
||||
(home-emacs-ace-link-notmuch-configuration-default-key config))
|
||||
";;;;; ace-link-notmuch-config ends here.\n"))
|
||||
(home-emacs-ace-link-notmuch-configuration-configurations config)))))
|
||||
|
||||
(define (add-emacs-ace-link-notmuch-packages config)
|
||||
(list (home-emacs-ace-link-notmuch-configuration-package config)))
|
||||
|
||||
(define home-emacs-ace-link-notmuch-service-type
|
||||
(service-type
|
||||
(name 'home-emacs-ace-link-notmuch)
|
||||
(extensions
|
||||
(list (service-extension
|
||||
home-emacs-service-type
|
||||
add-emacs-ace-link-notmuch)
|
||||
(service-extension
|
||||
home-profile-service-type
|
||||
add-emacs-ace-link-notmuch-packages)))
|
||||
(compose identity)
|
||||
(default-value (home-emacs-ace-link-notmuch-configuration))
|
||||
(description "Install and configure emacs-ace-link-notmuch.")))
|
||||
|
||||
;;; Emacs Golden Ratio
|
||||
|
||||
(define-configuration/no-serialization home-emacs-golden-ratio-configuration
|
||||
|
@ -466,8 +511,8 @@
|
|||
"vterm_cmd() {\n"
|
||||
" local vterm_elisp\n"
|
||||
" vterm_elisp=\"\"\n"
|
||||
" while [ $# -gt 0]; do\n"
|
||||
" vterm_elisp=\"vterm_elisp\"\"$(printf '\"%s\" ' \"$(printf \"%s\" \"$1\" | sed -e 's|\\\\|\\\\\\\\|g' -e 's|\"|\\\\\"|g')\")\"\n"
|
||||
" while [ $# -gt 0 ]; do\n"
|
||||
" vterm_elisp=\"$vterm_elisp\"\"$(printf '\"%s\" ' \"$(printf \"%s\" \"$1\" | sed -e 's|\\\\|\\\\\\\\|g' -e 's|\"|\\\\\"|g')\")\"\n"
|
||||
" shift\n"
|
||||
" done\n"
|
||||
" vterm_printf \"51;E$vterm_elisp\"\n"
|
||||
|
|
|
@ -49,8 +49,27 @@ after it has been unlocked."
|
|||
(define-key *top-map* (kbd "s-w") "exec rofi -show window")
|
||||
|
||||
(define-remapped-keys
|
||||
'(("teams-for-linux"
|
||||
("C-M-Break" . "C-S-m"))))
|
||||
`(("teams-for-linux"
|
||||
;; Mute microphone in meetings.
|
||||
("XF86Launch6" . "C-S-m"))
|
||||
("[Ff]irefox"
|
||||
;; Generally cancel action.
|
||||
("XF86Launch6" . "ESC"))
|
||||
("[Ee]macs"
|
||||
;; Save document.
|
||||
("XF86Launch5" . ("C-x" "C-s"))
|
||||
;; Save some documents.
|
||||
("S-XF86Launch5" . ("C-x" "s"))
|
||||
;; Quit command.
|
||||
("XF86Launch6" . "C-g")
|
||||
;; Revert (reload) file.
|
||||
("XF86Launch7" . ("C-x" "x" "g")))
|
||||
;; Portal: Revolution
|
||||
("revolution"
|
||||
;; Quick Save
|
||||
("XF86Launch5" . "F6")
|
||||
;; Quick Load
|
||||
("XF86Launch7" . "F7"))))
|
||||
|
||||
(set-bg-color "#222424")
|
||||
(set-border-color "#3f4242")
|
||||
|
|
|
@ -6,6 +6,9 @@
|
|||
#:select (service-type
|
||||
service-extension
|
||||
home-profile-service-type))
|
||||
#:use-module ((gnu home services mcron)
|
||||
#:select (home-mcron-service-type
|
||||
home-mcron-configuration))
|
||||
#:use-module ((gnu home services shepherd)
|
||||
#:select (home-shepherd-service-type
|
||||
shepherd-service))
|
||||
|
@ -45,6 +48,13 @@
|
|||
#~(make-forkexec-constructor
|
||||
'(#$(file-append inkplate-display "/bin/inkplate-display")))))))
|
||||
|
||||
(define (home-inkplate-display-mcron-service config)
|
||||
(list #~(job '(next-day)
|
||||
(lambda ()
|
||||
(system* "herd" "start" "inkplate-display"))
|
||||
;; "herd start inkplate-display"
|
||||
"Get new email and process it via the Notmuch hook scripts.")))
|
||||
|
||||
(define home-inkplate-display-service-type
|
||||
(service-type
|
||||
(name 'home-inkplate-display)
|
||||
|
@ -54,7 +64,10 @@
|
|||
add-inkplate-display-packages)
|
||||
(service-extension
|
||||
home-shepherd-service-type
|
||||
home-inkplate-display-shepherd-service)))
|
||||
home-inkplate-display-shepherd-service)
|
||||
(service-extension
|
||||
home-mcron-service-type
|
||||
home-inkplate-display-mcron-service)))
|
||||
(compose identity)
|
||||
(default-value (home-inkplate-display-configuration))
|
||||
(description "Install and configure Inkplate display.")))
|
||||
|
|
|
@ -1,32 +0,0 @@
|
|||
(define-module (oni packages emacs-outli)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix build-system emacs)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (gnu packages emacs-xyz))
|
||||
|
||||
(define-public emacs-outli
|
||||
(let ((commit "bfaa2ff7b777dd7c7b383e79ade061fda25fc282")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "emacs-outli")
|
||||
(version (git-version "0.0.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(uri (git-reference
|
||||
(url "https://github.com/jdtsmith/outli")
|
||||
(commit commit)))
|
||||
(method git-fetch)
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "17gnz77x9xgkvg1452dshd10i445ayfjyvrpq6vb240blj5sbrc8"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/jdtsmith/outli")
|
||||
(synopsis "Simple comment-based outlines for Emacs")
|
||||
(description "outli is a simple Emacs outliner for code, documents, and more which styles your
|
||||
headings, and emulates org-mode navigation and structure editing. It is based on
|
||||
the built-in outline-minor-mode and is simple by design, providing just a few
|
||||
key features.")
|
||||
(license license:gpl3+))))
|
|
@ -497,3 +497,49 @@ the way, but at the same time will be readable enough to know it's content.")
|
|||
Syncthing REST API and request package to get this data and display it in an
|
||||
Emacs buffer.")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public emacs-outli
|
||||
(package
|
||||
(name "emacs-outli")
|
||||
(version "0.1.0")
|
||||
(source
|
||||
(origin
|
||||
(uri (git-reference
|
||||
(url "https://github.com/jdtsmith/outli")
|
||||
(commit (string-append "v" version))))
|
||||
(method git-fetch)
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1yyh334r26pjgcx51rrxacwiranysnhbdz83xgpjwaby280xwlgb"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/jdtsmith/outli")
|
||||
(synopsis "Simple comment-based outlines for Emacs")
|
||||
(description "outli is a simple Emacs outliner for code, documents, and more which styles your
|
||||
headings, and emulates org-mode navigation and structure editing. It is based on
|
||||
the built-in outline-minor-mode and is simple by design, providing just a few
|
||||
key features.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-ace-link-notmuch
|
||||
(let ((commit "fb09673881ef0f7b7ad744c576a19f578df7c51d")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "emacs-ace-link-notmuch")
|
||||
(version (git-version "0.0.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(uri (git-reference
|
||||
(url "https://git.sr.ht/~ryuslash/ace-link-notmuch")
|
||||
(commit commit)))
|
||||
(method git-fetch)
|
||||
(sha256
|
||||
(base32 "1wpdimvwkrbic0hybsp5pqaql066yvl1aar37fr5kcm19gbgvcf6"))
|
||||
(file-name (git-file-name name version))))
|
||||
(propagated-inputs
|
||||
(list emacs-ace-link))
|
||||
(build-system emacs-build-system)
|
||||
(synopsis "ace-link functionality for notmuch")
|
||||
(description
|
||||
"ace-link functionality for notmuch")
|
||||
(license license:gpl3+)
|
||||
(home-page "https://sr.ht/~ryuslash/ace-link-notmuch/"))))
|
||||
|
|
Loading…
Reference in a new issue