summaryrefslogtreecommitdiff
path: root/.stumpwm.d/init.lisp
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-01-31 04:07:30 +0200
committerThanos Apollo <[email protected]>2024-01-31 04:07:30 +0200
commiteef462d92f9767f0de9e799cc56b831732146b38 (patch)
tree45a603cb67edaa0af01ca7e95c8885e9cfa62ac6 /.stumpwm.d/init.lisp
parente0fb066f0265054c09cdca6d878641e279ecc9ad (diff)
stumpwm:(init) Create first 2 groups on init and remove autostart
Diffstat (limited to '.stumpwm.d/init.lisp')
-rw-r--r--.stumpwm.d/init.lisp15
1 files changed, 6 insertions, 9 deletions
diff --git a/.stumpwm.d/init.lisp b/.stumpwm.d/init.lisp
index 4dc8421..db92e9f 100644
--- a/.stumpwm.d/init.lisp
+++ b/.stumpwm.d/init.lisp
@@ -1,22 +1,19 @@
(in-package :stumpwm)
(setf *default-package* :stumpwm)
+(when *initializing*
+ (grename "[ALPHA]")
+ (gnewbg "[BETA]"))
+
+(clear-window-placement-rules)
+
;; Utils
(load "~/.stumpwm.d/utils.lisp")
;; Theme
(load "~/.stumpwm.d/theme.lisp")
;; Commmands
(load "~/.stumpwm.d/commands.lisp")
-;; Groups
-(load "~/.stumpwm.d/groups.lisp")
;; Modeline
(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")))