Emacs : exwm diabled desktop-environment package.

This commit is contained in:
2023-04-24 19:25:24 +09:00
parent 3ae41a1428
commit 698a63c54b
4 changed files with 123 additions and 6 deletions

View File

@ -1,7 +1,7 @@
#+TITLE: Desktop
* Exwm Desktop
#+begin_src config
#+begin_src config :mkdirp yes :tangle ~/.config/emacs/exwm/EXWM.desktop
[Desktop Entry]
Name=EXWM
Comment=Emacs Window Manager
@ -12,7 +12,7 @@ X-LightDM-DesktopName=exwm
DesktopNames=exwm
#+end_src
#+begin_src shell
#+begin_src shell :mkdirp yes :tangle ~/.config/emacs/exwm/start-exwm.sh
#!/bin/sh
# Fire it up for WSL
#source ~/scripts/wsl_get_display.sh
@ -157,6 +157,7 @@ DesktopNames=exwm
;; if not wsl
(use-package desktop-environment
:disabled
:after exwm
:config (desktop-environment-mode))
;;:custom

View File

@ -170,7 +170,7 @@ Emacs Configuration for emacs 29.50
;; (convert-standard-filename
;; (expand-file-name "var/eln-cache/" user-emacs-directory))))
(setq backup-directory-alist `(("." . ,(no-litter "auto-save/"))))
;;(setq backup-directory-alist `(("." . ,(no-litter "auto-save/"))))
(setq custom-file (no-littering-expand-etc-file-name "custom.el"))
(when (file-exists-p custom-file)
(load custom-file))
@ -539,6 +539,8 @@ emacs built-in package config
(setq dashboard-set-heading-icons t)
(setq dashboard-set-file-icons t)
;;(setq dashboard-banner-logo-title "Emacs is more than a text editor!")
;; logo from github.com/egstatsml/emacs_fancy_logos
(setq dashboard-startup-banner "~/.config/emacs/logos/xemacs_color.svg")
;;(setq dashboard-startup-banner 'logo)
(setq dashboard-center-content t)
(setq dashboard-week-agenda t)
@ -1692,9 +1694,11 @@ calendar
https://github.com/xenodium/chatgpt-shell
#+begin_src emacs-lisp :mkdirp yes :tangle ~/.config/emacs/modules/custom-extra.el
(use-package chatgpt-shell
:straight (chatgpt-shell :type git
:host github
:repo "xenodium/chatgpt-shell")
:disabled
:straight
(chatgpt-shell :type git
:host github
:repo "xenodium/chatgpt-shell")
:config
(setq chatgpt-shell-openai-key "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"))
#+end_src

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 34 KiB