diff options
-rw-r--r-- | .emacs.d/modules/thanos-shells.el | 6 | ||||
-rw-r--r-- | .stumpwm.d/init.lisp | 7 |
2 files changed, 11 insertions, 2 deletions
diff --git a/.emacs.d/modules/thanos-shells.el b/.emacs.d/modules/thanos-shells.el index 0e7c476..822e102 100644 --- a/.emacs.d/modules/thanos-shells.el +++ b/.emacs.d/modules/thanos-shells.el @@ -33,10 +33,12 @@ (setenv "SBCL_HOME" "~/Developer/common-lisp/sbcl") (setenv "XDG_SESSION_TYPE" "x11") -;; yay completions -(require 'pcomplete-yay) ;; configuration with eat +;; (require 'pcomplete-yay) + +;; +(require 'pcomplete) (require 'eshell) (setf eshell-visual-commands '()) diff --git a/.stumpwm.d/init.lisp b/.stumpwm.d/init.lisp index c5398be..4dc8421 100644 --- a/.stumpwm.d/init.lisp +++ b/.stumpwm.d/init.lisp @@ -13,3 +13,10 @@ (load "~/.stumpwm.d/modeline.lisp") ;; Keybindings (load "~/.stumpwm.d/keybindings.lisp") + + +(when *initializing* + (mapc #'run-shell-command + '("picom" + "transmission-daemon" + "xsetroot -cursor_name left_ptr"))) |