diff options
author | Thanos Apollo <[email protected]> | 2023-09-22 21:41:14 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-09-22 21:41:14 +0300 |
commit | 7cc3678673eb0b9017f99c7612a2a38e1e3b438d (patch) | |
tree | 3c76477a1ea538eb3b23486803e80534c6a09209 /.stumpwm.d/theme.lisp | |
parent | 895ae18c340e07e83c0f3a6390ef36a1d229ef5f (diff) |
[stumpwm] Update theming and package naming
Diffstat (limited to '.stumpwm.d/theme.lisp')
-rw-r--r-- | .stumpwm.d/theme.lisp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/.stumpwm.d/theme.lisp b/.stumpwm.d/theme.lisp index e314441..a3cb002 100644 --- a/.stumpwm.d/theme.lisp +++ b/.stumpwm.d/theme.lisp @@ -1,9 +1,9 @@ ;; Startup message (setf *startup-message* "Welcome back, Thanos") -(load-module "swm-gaps") +(stumpwm:load-module "swm-gaps") ;; Colors -(load-module "ttf-fonts") +(stumpwm:load-module "ttf-fonts") (load "~/.stumpwm.d/colors.lisp") (setf *message-window-gravity* :center @@ -20,7 +20,6 @@ (update-color-map (current-screen))) - (set-border-color thanos-hope) (set-focus-color thanos-hope) (set-unfocus-color thanos-hope-alt) @@ -34,10 +33,14 @@ swm-gaps:*inner-gaps-size* 5 swm-gaps:*outer-gaps-size* 5) -(when *initializing* +(when stumpwm:*initializing* (swm-gaps:toggle-gaps-on)) (ql:quickload :clx-truetype) (set-font - `(,(make-instance 'xft:font :family "JetBrains Mono" :subfamily "Regular" :size 12 :antialias t))) + `(,(make-instance 'xft:font + :family "JetBrains Mono" + :subfamily "Regular" + :size 12 + :antialias t))) |