attempt to add eaf
This commit is contained in:
		
							parent
							
								
									e5c821a20e
								
							
						
					
					
						commit
						d1fe9d306e
					
				
					 2 changed files with 31 additions and 10 deletions
				
			
		
							
								
								
									
										23
									
								
								README.org
									
										
									
									
									
								
							
							
						
						
									
										23
									
								
								README.org
									
										
									
									
									
								
							| 
						 | 
				
			
			@ -30,6 +30,7 @@
 | 
			
		|||
  - [[#sly][Sly]]
 | 
			
		||||
  - [[#pdf-tools][PDF-Tools]]
 | 
			
		||||
  - [[#epub][EPUB]]
 | 
			
		||||
  - [[#eaf-emacs-application-framework][EAF (Emacs Application Framework)]]
 | 
			
		||||
  - [[#elfeed][Elfeed]]
 | 
			
		||||
  - [[#bongo][Bongo]]
 | 
			
		||||
  - [[#transmission][Transmission]]
 | 
			
		||||
| 
						 | 
				
			
			@ -1175,14 +1176,15 @@ Part of this config includes some special capture templates for my work as a you
 | 
			
		|||
 | 
			
		||||
  (setq org-refile-targets '((org-agenda-files . (:maxlevel . 6))))
 | 
			
		||||
 | 
			
		||||
  (setq org-agenda-window-setup 'other-window)
 | 
			
		||||
  (setq org-agenda-window-setup 'only-window)
 | 
			
		||||
 | 
			
		||||
  (defun chris/org-agenda ()
 | 
			
		||||
    "create a window in AwesomeWM that houses my org-agenda"
 | 
			
		||||
    (interactive)
 | 
			
		||||
    (make-frame '((name . "org-agenda")
 | 
			
		||||
                  (width . 100)))
 | 
			
		||||
    (switch-to-buffer "*Org Agenda(a)*"))
 | 
			
		||||
    (with-selected-frame (make-frame
 | 
			
		||||
                          '((name . "org-agenda")
 | 
			
		||||
                            (width . 100))) (org-agenda-list)))
 | 
			
		||||
  
 | 
			
		||||
 | 
			
		||||
  :general
 | 
			
		||||
  (chris/leader-keys
 | 
			
		||||
| 
						 | 
				
			
			@ -1191,7 +1193,7 @@ Part of this config includes some special capture templates for my work as a you
 | 
			
		|||
    "c" 'org-capture
 | 
			
		||||
    "rr" 'org-refile
 | 
			
		||||
    "e" 'org-export-dispatch
 | 
			
		||||
    "oa" 'org-agenda)
 | 
			
		||||
    "oa" 'chris/org-agenda)
 | 
			
		||||
  ('normal org-agenda-mode-map
 | 
			
		||||
           "q" 'org-agenda-quit
 | 
			
		||||
           "r" 'org-agenda-redo
 | 
			
		||||
| 
						 | 
				
			
			@ -1890,6 +1892,17 @@ Let's use pdf-tools for a lot better interaction with pdfs.
 | 
			
		|||
  (add-hook 'nov-mode-hook 'visual-fill-column-mode))
 | 
			
		||||
#+end_src
 | 
			
		||||
 | 
			
		||||
** EAF (Emacs Application Framework)
 | 
			
		||||
 | 
			
		||||
#+begin_src emacs-lisp
 | 
			
		||||
(use-package eaf
 | 
			
		||||
  :straight (:host github :repo "manateelazycat/emacs-application-framework"
 | 
			
		||||
                   :files ("*"))
 | 
			
		||||
  :defer 1
 | 
			
		||||
  :config
 | 
			
		||||
  (setq eaf-browser-dark-mode t))
 | 
			
		||||
#+end_src
 | 
			
		||||
 | 
			
		||||
** Elfeed
 | 
			
		||||
#+begin_src emacs-lisp
 | 
			
		||||
(use-package elfeed
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										18
									
								
								init.el
									
										
									
									
									
								
							
							
						
						
									
										18
									
								
								init.el
									
										
									
									
									
								
							| 
						 | 
				
			
			@ -778,14 +778,15 @@ vertically."
 | 
			
		|||
 | 
			
		||||
  (setq org-refile-targets '((org-agenda-files . (:maxlevel . 6))))
 | 
			
		||||
 | 
			
		||||
  (setq org-agenda-window-setup 'other-window)
 | 
			
		||||
  (setq org-agenda-window-setup 'only-window)
 | 
			
		||||
 | 
			
		||||
  (defun chris/org-agenda ()
 | 
			
		||||
    "create a window in AwesomeWM that houses my org-agenda"
 | 
			
		||||
    (interactive)
 | 
			
		||||
    (make-frame '((name . "org-agenda")
 | 
			
		||||
                  (width . 100)))
 | 
			
		||||
    (switch-to-buffer "*Org Agenda(a)*"))
 | 
			
		||||
    (with-selected-frame (make-frame
 | 
			
		||||
                          '((name . "org-agenda")
 | 
			
		||||
                            (width . 100))) (org-agenda-list)))
 | 
			
		||||
  
 | 
			
		||||
 | 
			
		||||
  :general
 | 
			
		||||
  (chris/leader-keys
 | 
			
		||||
| 
						 | 
				
			
			@ -794,7 +795,7 @@ vertically."
 | 
			
		|||
    "c" 'org-capture
 | 
			
		||||
    "rr" 'org-refile
 | 
			
		||||
    "e" 'org-export-dispatch
 | 
			
		||||
    "oa" 'org-agenda)
 | 
			
		||||
    "oa" 'chris/org-agenda)
 | 
			
		||||
  ('normal org-agenda-mode-map
 | 
			
		||||
           "q" 'org-agenda-quit
 | 
			
		||||
           "r" 'org-agenda-redo
 | 
			
		||||
| 
						 | 
				
			
			@ -1417,6 +1418,13 @@ If on a:
 | 
			
		|||
  :config
 | 
			
		||||
  (add-hook 'nov-mode-hook 'visual-fill-column-mode))
 | 
			
		||||
 | 
			
		||||
(use-package eaf
 | 
			
		||||
  :straight (:host github :repo "manateelazycat/emacs-application-framework"
 | 
			
		||||
                   :files ("*"))
 | 
			
		||||
  :defer 1
 | 
			
		||||
  :config
 | 
			
		||||
  (setq eaf-browser-dark-mode t))
 | 
			
		||||
 | 
			
		||||
(use-package elfeed
 | 
			
		||||
  :commands (elfeed)
 | 
			
		||||
  :config
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue