mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-19 13:46:17 +10:00
Adding modular colorschemes to Xmonad.
This commit is contained in:
@@ -374,9 +374,9 @@ List of keybindings (SPC h b b)")
|
|||||||
(setq org-export-with-broken-links t)
|
(setq org-export-with-broken-links t)
|
||||||
(setq org-publish-project-alist
|
(setq org-publish-project-alist
|
||||||
'(("distro.tube"
|
'(("distro.tube"
|
||||||
:base-directory "~/gitlab-repos/distro.tube/"
|
:base-directory "~/nc/gitlab-repos/distro.tube/"
|
||||||
:base-extension "org"
|
:base-extension "org"
|
||||||
:publishing-directory "~/gitlab-repos/distro.tube/html/"
|
:publishing-directory "~/nc/gitlab-repos/distro.tube/html/"
|
||||||
:recursive t
|
:recursive t
|
||||||
:exclude "org-html-themes/.*"
|
:exclude "org-html-themes/.*"
|
||||||
:publishing-function org-html-publish-to-html
|
:publishing-function org-html-publish-to-html
|
||||||
|
|||||||
@@ -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-export-with-broken-links t)
|
||||||
(setq org-publish-project-alist
|
(setq org-publish-project-alist
|
||||||
'(("distro.tube"
|
'(("distro.tube"
|
||||||
:base-directory "~/gitlab-repos/distro.tube/"
|
:base-directory "~/nc/gitlab-repos/distro.tube/"
|
||||||
:base-extension "org"
|
:base-extension "org"
|
||||||
:publishing-directory "~/gitlab-repos/distro.tube/html/"
|
:publishing-directory "~/nc/gitlab-repos/distro.tube/html/"
|
||||||
:recursive t
|
:recursive t
|
||||||
:exclude "org-html-themes/.*"
|
:exclude "org-html-themes/.*"
|
||||||
:publishing-function org-html-publish-to-html
|
:publishing-function org-html-publish-to-html
|
||||||
|
|||||||
@@ -167,7 +167,7 @@ myStartupHook = do
|
|||||||
spawnOnce "nm-applet &"
|
spawnOnce "nm-applet &"
|
||||||
spawnOnce "volumeicon &"
|
spawnOnce "volumeicon &"
|
||||||
spawnOnce "conky -c $HOME/.config/conky/xmonad/doom-one-01.conkyrc"
|
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 "/usr/bin/emacs --daemon &" -- emacs daemon for the emacsclient
|
||||||
spawnOnce "xargs xwallpaper --stretch < ~/.cache/wall"
|
spawnOnce "xargs xwallpaper --stretch < ~/.cache/wall"
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|||||||
@@ -23,3 +23,6 @@ color13 = "#3071db"
|
|||||||
color14 = "#a9a1e1"
|
color14 = "#a9a1e1"
|
||||||
color15 = "#46d9ff"
|
color15 = "#46d9ff"
|
||||||
color16 = "#dfdfdf"
|
color16 = "#dfdfdf"
|
||||||
|
|
||||||
|
colorTrayer :: String
|
||||||
|
colorTrayer = "--tint 0x282c34"
|
||||||
|
|||||||
@@ -3,6 +3,10 @@ module Colors.Dracula where
|
|||||||
import XMonad
|
import XMonad
|
||||||
|
|
||||||
colorScheme = "dracula"
|
colorScheme = "dracula"
|
||||||
|
|
||||||
|
colorBack = "#282a36"
|
||||||
|
colorFore = "#f8f8f2"
|
||||||
|
|
||||||
color01="#000000"
|
color01="#000000"
|
||||||
color02="#ff5555"
|
color02="#ff5555"
|
||||||
color03="#50fa7b"
|
color03="#50fa7b"
|
||||||
@@ -19,3 +23,6 @@ color13="#caa9fa"
|
|||||||
color14="#ff92d0"
|
color14="#ff92d0"
|
||||||
color15="#9aedfe"
|
color15="#9aedfe"
|
||||||
color16="#e6e6e6"
|
color16="#e6e6e6"
|
||||||
|
|
||||||
|
colorTrayer :: String
|
||||||
|
colorTrayer = "--tint 0x282a36"
|
||||||
|
|||||||
@@ -3,6 +3,10 @@ module Colors.GruvboxDark where
|
|||||||
import XMonad
|
import XMonad
|
||||||
|
|
||||||
colorScheme = "gruvbox-dark"
|
colorScheme = "gruvbox-dark"
|
||||||
|
|
||||||
|
colorBack = "#282828"
|
||||||
|
colorFore = "#ebdbb2"
|
||||||
|
|
||||||
color01 = "#282828"
|
color01 = "#282828"
|
||||||
color02 = "#cc241d"
|
color02 = "#cc241d"
|
||||||
color03 = "#98971a"
|
color03 = "#98971a"
|
||||||
@@ -19,3 +23,6 @@ color13 = "#83a598"
|
|||||||
color14 = "#d3869b"
|
color14 = "#d3869b"
|
||||||
color15 = "#8ec07c"
|
color15 = "#8ec07c"
|
||||||
color16 = "#ebdbb2"
|
color16 = "#ebdbb2"
|
||||||
|
|
||||||
|
colorTrayer :: String
|
||||||
|
colorTrayer = "--tint 0x282828"
|
||||||
|
|||||||
@@ -23,3 +23,6 @@ color13 = "#FC9867"
|
|||||||
color14 = "#AB9DF2"
|
color14 = "#AB9DF2"
|
||||||
color15 = "#78DCE8"
|
color15 = "#78DCE8"
|
||||||
color16 = "#FCFCFA"
|
color16 = "#FCFCFA"
|
||||||
|
|
||||||
|
colorTrayer :: String
|
||||||
|
colorTrayer = "--tint 0x2D2A2E"
|
||||||
|
|||||||
@@ -23,3 +23,6 @@ color13 = "#6699cc"
|
|||||||
color14 = "#c594c5"
|
color14 = "#c594c5"
|
||||||
color15 = "#5fb3b3"
|
color15 = "#5fb3b3"
|
||||||
color16 = "#d8dee9"
|
color16 = "#d8dee9"
|
||||||
|
|
||||||
|
colorTrayer :: String
|
||||||
|
colorTrayer = "--tint 0x2E3440"
|
||||||
|
|||||||
@@ -23,3 +23,6 @@ color13 = "#6699cc"
|
|||||||
color14 = "#c594c5"
|
color14 = "#c594c5"
|
||||||
color15 = "#5fb3b3"
|
color15 = "#5fb3b3"
|
||||||
color16 = "#d8dee9"
|
color16 = "#d8dee9"
|
||||||
|
|
||||||
|
colorTrayer :: String
|
||||||
|
colorTrayer = "--tint 0x1b2b34"
|
||||||
|
|||||||
@@ -23,3 +23,6 @@ color13 = "#839496"
|
|||||||
color14 = "#6c71c4"
|
color14 = "#6c71c4"
|
||||||
color15 = "#93a1a1"
|
color15 = "#93a1a1"
|
||||||
color16 = "#fdf6e3"
|
color16 = "#fdf6e3"
|
||||||
|
|
||||||
|
colorTrayer :: String
|
||||||
|
colorTrayer = "--tint 0x002b36"
|
||||||
|
|||||||
@@ -23,3 +23,6 @@ color13 = "#839496"
|
|||||||
color14 = "#fdf6e3" -- Was color16 but too light for use in panel.
|
color14 = "#fdf6e3" -- Was color16 but too light for use in panel.
|
||||||
color15 = "#93a1a1"
|
color15 = "#93a1a1"
|
||||||
color16 = "#6c71c4" -- Was color14 but needed a dark color in this spot.
|
color16 = "#6c71c4" -- Was color14 but needed a dark color in this spot.
|
||||||
|
|
||||||
|
colorTrayer :: String
|
||||||
|
colorTrayer = "--tint 0xfdf6e3"
|
||||||
|
|||||||
@@ -23,3 +23,6 @@ color13 = "#81a2be"
|
|||||||
color14 = "#b77ee0"
|
color14 = "#b77ee0"
|
||||||
color15 = "#54ced6"
|
color15 = "#54ced6"
|
||||||
color16 = "#282a2e"
|
color16 = "#282a2e"
|
||||||
|
|
||||||
|
colorTrayer :: String
|
||||||
|
colorTrayer = "--tint 0x1d1f21"
|
||||||
|
|||||||
@@ -118,7 +118,7 @@ myStartupHook = do
|
|||||||
spawnOnce "nm-applet &"
|
spawnOnce "nm-applet &"
|
||||||
spawnOnce "volumeicon &"
|
spawnOnce "volumeicon &"
|
||||||
spawnOnce "conky -c $HOME/.config/conky/xmonad/doom-one-01.conkyrc"
|
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 "/usr/bin/emacs --daemon &" -- emacs daemon for the emacsclient
|
||||||
spawnOnce "xargs xwallpaper --stretch < ~/.cache/wall"
|
spawnOnce "xargs xwallpaper --stretch < ~/.cache/wall"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user