diff options
author | bd <bdunahu@colostate.edu> | 2024-03-09 20:19:50 -0700 |
---|---|---|
committer | bd <bdunahu@colostate.edu> | 2024-03-09 20:19:50 -0700 |
commit | 443504c783443e568148bc467d740381deaf814c (patch) | |
tree | 9f28fe57aa1da33357eab9f8ff8ae9219e6b7eef /.config/emacs/init.el | |
parent | 54884c3031769a51010d586d7d7d0248b62695e5 (diff) |
exwm -> dwm
Diffstat (limited to '.config/emacs/init.el')
-rw-r--r-- | .config/emacs/init.el | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index 79ae17f..65be41a 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -20,6 +20,13 @@ ;;;; warnings (setopt warning-minimum-level :error) + +;;;; startup some programs +(start-process-shell-command "picom" nil "picom") +(start-process-shell-command "bg" nil "set-bg") +(start-process-shell-command "xrate" nil "xset r rate 250 70") + + ;;;; configure packages ;; external package manager (setopt package-archives nil @@ -58,4 +65,6 @@ (require 'bd--roam) (require 'bd--emms) (require 'bd--modeline) -(require 'bd--exwm-windowing) +;; (require 'bd--exwm-windowing) + +(server-start) |