diff options
author | Thanos Apollo <[email protected]> | 2023-10-09 21:22:20 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-10-09 21:22:20 +0300 |
commit | 7a89fc919671e5319b7f9b39464f8df5e25686bb (patch) | |
tree | 83036cfcc9aa3c0a00477ed48d474c9662686397 /.stumpwm.d | |
parent | aac301639897f9ee2ae4ac267813dc36bec66d3d (diff) |
emacs:(shells) disable yay completions by default
If no internet connection, hangs Emacs
Diffstat (limited to '.stumpwm.d')
-rw-r--r-- | .stumpwm.d/init.lisp | 7 |
1 files changed, 7 insertions, 0 deletions
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"))) |