1
0
Fork 0
mirror of https://gitlab.com/dwt1/dotfiles.git synced 2023-02-13 20:55:19 -05:00

Adding modular colorschemes to Xmonad.

This commit is contained in:
Derek Taylor 2021-12-05 12:55:12 -06:00
parent 8d9f02da8d
commit d7efb4f22f
13 changed files with 41 additions and 6 deletions

View file

@ -374,9 +374,9 @@ List of keybindings (SPC h b b)")
(setq org-export-with-broken-links t)
(setq org-publish-project-alist
'(("distro.tube"
:base-directory "~/gitlab-repos/distro.tube/"
:base-directory "~/nc/gitlab-repos/distro.tube/"
:base-extension "org"
:publishing-directory "~/gitlab-repos/distro.tube/html/"
:publishing-directory "~/nc/gitlab-repos/distro.tube/html/"
:recursive t
:exclude "org-html-themes/.*"
:publishing-function org-html-publish-to-html

View file

@ -728,9 +728,9 @@ We need ox-man for "Org eXporting" to manpage format and ox-gemini for exporting
(setq org-export-with-broken-links t)
(setq org-publish-project-alist
'(("distro.tube"
:base-directory "~/gitlab-repos/distro.tube/"
:base-directory "~/nc/gitlab-repos/distro.tube/"
:base-extension "org"
:publishing-directory "~/gitlab-repos/distro.tube/html/"
:publishing-directory "~/nc/gitlab-repos/distro.tube/html/"
:recursive t
:exclude "org-html-themes/.*"
:publishing-function org-html-publish-to-html

View file

@ -167,7 +167,7 @@ myStartupHook = do
spawnOnce "nm-applet &"
spawnOnce "volumeicon &"
spawnOnce "conky -c $HOME/.config/conky/xmonad/doom-one-01.conkyrc"
spawnOnce "trayer --edge top --align right --widthtype request --padding 6 --SetDockType true --SetPartialStrut true --expand true --monitor 1 --transparent true --alpha 0 --tint 0x282c34 --height 22 &"
spawnOnce ("trayer --edge top --align right --widthtype request --padding 6 --SetDockType true --SetPartialStrut true --expand true --monitor 1 --transparent true --alpha 0 " ++ colorTrayer ++ " --height 22 &")
spawnOnce "/usr/bin/emacs --daemon &" -- emacs daemon for the emacsclient
spawnOnce "xargs xwallpaper --stretch < ~/.cache/wall"
#+END_SRC

View file

@ -23,3 +23,6 @@ color13 = "#3071db"
color14 = "#a9a1e1"
color15 = "#46d9ff"
color16 = "#dfdfdf"
colorTrayer :: String
colorTrayer = "--tint 0x282c34"

View file

@ -3,6 +3,10 @@ module Colors.Dracula where
import XMonad
colorScheme = "dracula"
colorBack = "#282a36"
colorFore = "#f8f8f2"
color01="#000000"
color02="#ff5555"
color03="#50fa7b"
@ -19,3 +23,6 @@ color13="#caa9fa"
color14="#ff92d0"
color15="#9aedfe"
color16="#e6e6e6"
colorTrayer :: String
colorTrayer = "--tint 0x282a36"

View file

@ -3,6 +3,10 @@ module Colors.GruvboxDark where
import XMonad
colorScheme = "gruvbox-dark"
colorBack = "#282828"
colorFore = "#ebdbb2"
color01 = "#282828"
color02 = "#cc241d"
color03 = "#98971a"
@ -19,3 +23,6 @@ color13 = "#83a598"
color14 = "#d3869b"
color15 = "#8ec07c"
color16 = "#ebdbb2"
colorTrayer :: String
colorTrayer = "--tint 0x282828"

View file

@ -23,3 +23,6 @@ color13 = "#FC9867"
color14 = "#AB9DF2"
color15 = "#78DCE8"
color16 = "#FCFCFA"
colorTrayer :: String
colorTrayer = "--tint 0x2D2A2E"

View file

@ -23,3 +23,6 @@ color13 = "#6699cc"
color14 = "#c594c5"
color15 = "#5fb3b3"
color16 = "#d8dee9"
colorTrayer :: String
colorTrayer = "--tint 0x2E3440"

View file

@ -23,3 +23,6 @@ color13 = "#6699cc"
color14 = "#c594c5"
color15 = "#5fb3b3"
color16 = "#d8dee9"
colorTrayer :: String
colorTrayer = "--tint 0x1b2b34"

View file

@ -23,3 +23,6 @@ color13 = "#839496"
color14 = "#6c71c4"
color15 = "#93a1a1"
color16 = "#fdf6e3"
colorTrayer :: String
colorTrayer = "--tint 0x002b36"

View file

@ -23,3 +23,6 @@ color13 = "#839496"
color14 = "#fdf6e3" -- Was color16 but too light for use in panel.
color15 = "#93a1a1"
color16 = "#6c71c4" -- Was color14 but needed a dark color in this spot.
colorTrayer :: String
colorTrayer = "--tint 0xfdf6e3"

View file

@ -23,3 +23,6 @@ color13 = "#81a2be"
color14 = "#b77ee0"
color15 = "#54ced6"
color16 = "#282a2e"
colorTrayer :: String
colorTrayer = "--tint 0x1d1f21"

View file

@ -118,7 +118,7 @@ myStartupHook = do
spawnOnce "nm-applet &"
spawnOnce "volumeicon &"
spawnOnce "conky -c $HOME/.config/conky/xmonad/doom-one-01.conkyrc"
spawnOnce "trayer --edge top --align right --widthtype request --padding 6 --SetDockType true --SetPartialStrut true --expand true --monitor 1 --transparent true --alpha 0 --tint 0x282c34 --height 22 &"
spawnOnce ("trayer --edge top --align right --widthtype request --padding 6 --SetDockType true --SetPartialStrut true --expand true --monitor 1 --transparent true --alpha 0 " ++ colorTrayer ++ " --height 22 &")
spawnOnce "/usr/bin/emacs --daemon &" -- emacs daemon for the emacsclient
spawnOnce "xargs xwallpaper --stretch < ~/.cache/wall"