diff options
author | Thanos Apollo <[email protected]> | 2024-01-31 04:08:41 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-01-31 04:08:41 +0200 |
commit | d0a8fdcf097989bf498b88b52a758c82b9db3e28 (patch) | |
tree | 94103d5dfa468bc763aefe7e7e448ea81ec85ddc /.stumpwm.d | |
parent | 9408f49ff7bd017157a2b700834bc794b9b82841 (diff) |
stumpwm: Update colorscheme and remove unused fonts
Diffstat (limited to '.stumpwm.d')
-rw-r--r-- | .stumpwm.d/theme.lisp | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/.stumpwm.d/theme.lisp b/.stumpwm.d/theme.lisp index ad42d5e..c5b96d6 100644 --- a/.stumpwm.d/theme.lisp +++ b/.stumpwm.d/theme.lisp @@ -38,14 +38,14 @@ (update-color-map (current-screen))) -(set-border-color thanos-hope) -(set-focus-color thanos-hope) -(set-unfocus-color thanos-hope-alt) +(set-border-color thanos-black-bg) +(set-focus-color thanos-black-active) +(set-unfocus-color thanos-black-inactive) (set-float-focus-color thanos-hope1) (set-float-unfocus-color thanos-hope3) (set-fg-color thanos-hope-fg) -(set-bg-color thanos-hope) +(set-bg-color thanos-black-bg) (setf swm-gaps:*head-gaps-size* 6 swm-gaps:*inner-gaps-size* 6 @@ -61,13 +61,4 @@ :family "JetBrains Mono" :subfamily "Regular" :size 12 - :antialias t) - ,(make-instance 'xft:font - :family "Hack" - :subfamily "Regular" - :size 12) - ,(make-instance 'xft:font - :family "Fira Code" - :subfamily "Regular" - :size 12) - )) + :antialias t))) |