Adding color schemes.

This commit is contained in:
Derek Taylor
2021-11-05 13:28:07 -05:00
parent 1b8d8bcefb
commit 2972826fb3
14 changed files with 57 additions and 48 deletions

View File

@@ -1,7 +1,7 @@
--[[ --[[
######################## ###################################
## DoomOne-Qtile ## ## doom-one-01.conkyrc (Qtile) ##
######################## ###################################
]] ]]
conky.config = { conky.config = {
@@ -31,7 +31,7 @@ conky.config = {
-- Size -- Size
minimum_height = 200, -- minimum height of window minimum_height = 200, -- minimum height of window
minimum_width = 260, -- minimum height of window minimum_width = 260, -- minimum width of window
maximum_width = 260, -- maximum height of window maximum_width = 260, -- maximum height of window
--Graphical --Graphical
@@ -54,7 +54,10 @@ conky.config = {
--Textual --Textual
format_human_readable = true, -- KiB, MiB rather then number of bytes format_human_readable = true, -- KiB, MiB rather then number of bytes
font = 'Source Code Pro:bold:size=10', -- font for complete conky unless in code defined font = 'Source Code Pro:bold:size=10', -- the default font used
font2 = 'Raleway:bold:size=30', -- font for the time
font3 = 'Ubuntu:size=14', -- font for the date
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
max_text_width = 0, -- 0 will make sure line does not get broken if width too smal max_text_width = 0, -- 0 will make sure line does not get broken if width too smal
max_user_text = 16384, -- max text in conky default 16384 max_user_text = 16384, -- max text in conky default 16384
override_utf8_locale = true, -- force UTF8 requires xft override_utf8_locale = true, -- force UTF8 requires xft
@@ -73,8 +76,8 @@ conky.config = {
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
own_window_colour = '#282c34', -- set colour if own_window_transparent no own_window_colour = '#282c34', -- set colour if own_window_transparent no
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0% own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
own_window_title = 'qtile_conky', -- set the name manually own_window_title = 'xmonad_conky', -- set the name manually
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel own_window_type = 'desktop', -- if own_window true options are: normal/override/dock/desktop/panel
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
--Colors (Doom One) --Colors (Doom One)
@@ -85,8 +88,8 @@ conky.config = {
}; };
conky.text = [[ conky.text = [[
${alignc}${color0}${font Ubuntu:size=30}${time %H:%M}${font} ${alignc}${color0}${font2}${time %H:%M}${font}
${voffset 6}${alignc}${color0}${font Ubuntu:size=14}${time %b %d, %Y}${font}${color} ${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu% ${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
${color2}${goto 12}${cpubar 8,254} ${color2}${goto 12}${cpubar 8,254}
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}% ${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
@@ -97,7 +100,7 @@ ${color2}${goto 12}${membar 8,254}${color}
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1} ${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2} ${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3} ${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
${voffset 18}${color1}${alignc}QTILE KEYBINDINGS${color} ${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
${color1}${hr}${color} ${color1}${hr}${color}
${color1}[S]+[RET]${alignr}${color2}open terminal${color} ${color1}[S]+[RET]${alignr}${color2}open terminal${color}
${color1}[S]+b${alignr}${color2}open qutebrowser${color} ${color1}[S]+b${alignr}${color2}open qutebrowser${color}
@@ -123,6 +126,6 @@ ${color1}[S]+p, m${alignr}${color2}dm-man${color}
${color1}[S]+p, o${alignr}${color2}dm-bookman${color} ${color1}[S]+p, o${alignr}${color2}dm-bookman${color}
${color1}[S]+p, s${alignr}${color2}dm-websearch${color} ${color1}[S]+p, s${alignr}${color2}dm-websearch${color}
${color1}${hr}${color} ${color1}${hr}${color}
${color1}[S]+[SHIFT]+r${alignr}${color2}restart xmonad${color} ${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
${color1}[S]+[SHIFT]+q${alignr}${color2}quit xmonad${color} ${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
]]; ]];

View File

@@ -1,7 +1,7 @@
--[[ --[[
######################## ####################################
## DoomOne-XMonad ## ## doom-one-01.conkyrc (XMonad) ##
######################## ####################################
]] ]]
conky.config = { conky.config = {
@@ -31,8 +31,8 @@ conky.config = {
-- Size -- Size
minimum_height = 200, -- minimum height of window minimum_height = 200, -- minimum height of window
minimum_width = 260, -- minimum height of window minimum_width = 260, -- minimum width of window
maximum_width = 260, -- maximum height of window maximum_width = 260, -- maximum width of window
--Graphical --Graphical
border_inner_margin = 5, -- margin between border and text border_inner_margin = 5, -- margin between border and text

View File

@@ -31,8 +31,8 @@ conky.config = {
-- Size -- Size
minimum_height = 200, -- minimum height of window minimum_height = 200, -- minimum height of window
minimum_width = 260, -- minimum height of window minimum_width = 260, -- minimum width of window
maximum_width = 260, -- maximum height of window maximum_width = 260, -- maximum width of window
--Graphical --Graphical
border_inner_margin = 5, -- margin between border and text border_inner_margin = 5, -- margin between border and text

View File

@@ -31,8 +31,8 @@ conky.config = {
-- Size -- Size
minimum_height = 200, -- minimum height of window minimum_height = 200, -- minimum height of window
minimum_width = 260, -- minimum height of window minimum_width = 260, -- minimum width of window
maximum_width = 260, -- maximum height of window maximum_width = 260, -- maximum width of window
--Graphical --Graphical
border_inner_margin = 5, -- margin between border and text border_inner_margin = 5, -- margin between border and text

View File

@@ -31,8 +31,8 @@ conky.config = {
-- Size -- Size
minimum_height = 200, -- minimum height of window minimum_height = 200, -- minimum height of window
minimum_width = 260, -- minimum height of window minimum_width = 260, -- minimum width of window
maximum_width = 260, -- maximum height of window maximum_width = 260, -- maximum width of window
--Graphical --Graphical
border_inner_margin = 5, -- margin between border and text border_inner_margin = 5, -- margin between border and text

View File

@@ -31,8 +31,8 @@ conky.config = {
-- Size -- Size
minimum_height = 200, -- minimum height of window minimum_height = 200, -- minimum height of window
minimum_width = 260, -- minimum height of window minimum_width = 260, -- minimum width of window
maximum_width = 260, -- maximum height of window maximum_width = 260, -- maximum width of window
--Graphical --Graphical
border_inner_margin = 5, -- margin between border and text border_inner_margin = 5, -- margin between border and text

View File

@@ -31,8 +31,8 @@ conky.config = {
-- Size -- Size
minimum_height = 200, -- minimum height of window minimum_height = 200, -- minimum height of window
minimum_width = 260, -- minimum height of window minimum_width = 260, -- minimum width of window
maximum_width = 260, -- maximum height of window maximum_width = 260, -- maximum width of window
--Graphical --Graphical
border_inner_margin = 5, -- margin between border and text border_inner_margin = 5, -- margin between border and text

View File

@@ -31,8 +31,8 @@ conky.config = {
-- Size -- Size
minimum_height = 200, -- minimum height of window minimum_height = 200, -- minimum height of window
minimum_width = 260, -- minimum height of window minimum_width = 260, -- minimum width of window
maximum_width = 260, -- maximum height of window maximum_width = 260, -- maximum width of window
--Graphical --Graphical
border_inner_margin = 5, -- margin between border and text border_inner_margin = 5, -- margin between border and text

View File

@@ -31,8 +31,8 @@ conky.config = {
-- Size -- Size
minimum_height = 200, -- minimum height of window minimum_height = 200, -- minimum height of window
minimum_width = 260, -- minimum height of window minimum_width = 260, -- minimum width of window
maximum_width = 260, -- maximum height of window maximum_width = 260, -- maximum width of window
--Graphical --Graphical
border_inner_margin = 5, -- margin between border and text border_inner_margin = 5, -- margin between border and text

View File

@@ -31,8 +31,8 @@ conky.config = {
-- Size -- Size
minimum_height = 200, -- minimum height of window minimum_height = 200, -- minimum height of window
minimum_width = 260, -- minimum height of window minimum_width = 260, -- minimum width of window
maximum_width = 260, -- maximum height of window maximum_width = 260, -- maximum width of window
--Graphical --Graphical
border_inner_margin = 5, -- margin between border and text border_inner_margin = 5, -- margin between border and text

View File

@@ -31,8 +31,8 @@ conky.config = {
-- Size -- Size
minimum_height = 200, -- minimum height of window minimum_height = 200, -- minimum height of window
minimum_width = 260, -- minimum height of window minimum_width = 260, -- minimum width of window
maximum_width = 260, -- maximum height of window maximum_width = 260, -- maximum width of window
--Graphical --Graphical
border_inner_margin = 5, -- margin between border and text border_inner_margin = 5, -- margin between border and text

View File

@@ -97,7 +97,7 @@
magit ; a git porcelain for Emacs magit ; a git porcelain for Emacs
;;make ; run make tasks from Emacs ;;make ; run make tasks from Emacs
;;pass ; password manager for nerds ;;pass ; password manager for nerds
;;pdf ; pdf enhancements pdf ; pdf enhancements
;;prodigy ; FIXME managing external services & code builders ;;prodigy ; FIXME managing external services & code builders
;;rgb ; creating color strings ;;rgb ; creating color strings
;;taskrunner ; taskrunner for all your projects ;;taskrunner ; taskrunner for all your projects

View File

@@ -453,7 +453,10 @@ myKeys =
[ ("M-C-r", spawn "xmonad --recompile") -- Recompiles xmonad [ ("M-C-r", spawn "xmonad --recompile") -- Recompiles xmonad
, ("M-S-r", spawn "xmonad --restart") -- Restarts xmonad , ("M-S-r", spawn "xmonad --restart") -- Restarts xmonad
, ("M-S-q", io exitSuccess) -- Quits xmonad , ("M-S-q", io exitSuccess) -- Quits xmonad
, ("M-S-/", spawn "~/.xmonad/xmonad_keys.sh")
-- KB_GROUP Get Help
, ("M-S-/", spawn "~/.xmonad/xmonad_keys.sh") -- Get list of keybindings
, ("M-/", spawn "dtos-help") -- DTOS help/tutorial videos
-- KB_GROUP Run Prompt -- KB_GROUP Run Prompt
, ("M-S-<Return>", spawn "dmenu_run -i -p \"Run: \"") -- Dmenu , ("M-S-<Return>", spawn "dmenu_run -i -p \"Run: \"") -- Dmenu
@@ -601,8 +604,8 @@ main :: IO ()
main = do main = do
-- Launching three instances of xmobar on their monitors. -- Launching three instances of xmobar on their monitors.
xmproc0 <- spawnPipe "xmobar -x 0 $HOME/.config/xmobar/doom-one-xmobarrc" xmproc0 <- spawnPipe "xmobar -x 0 $HOME/.config/xmobar/doom-one-xmobarrc"
xmproc1 <- spawnPipe "xmobar -x 1 $HOME/.config/xmobar/xmobarrc" xmproc1 <- spawnPipe "xmobar -x 1 $HOME/.config/xmobar/doom-one-xmobarrc"
xmproc2 <- spawnPipe "xmobar -x 2 $HOME/.config/xmobar/xmobarrc" xmproc2 <- spawnPipe "xmobar -x 2 $HOME/.config/xmobar/doom-one-xmobarrc"
-- the xmonad, ya know...what the WM is named after! -- the xmonad, ya know...what the WM is named after!
xmonad $ ewmh def xmonad $ ewmh def
{ manageHook = myManageHook <+> manageDocks { manageHook = myManageHook <+> manageDocks

View File

@@ -344,7 +344,10 @@ myKeys =
[ ("M-C-r", spawn "xmonad --recompile") -- Recompiles xmonad [ ("M-C-r", spawn "xmonad --recompile") -- Recompiles xmonad
, ("M-S-r", spawn "xmonad --restart") -- Restarts xmonad , ("M-S-r", spawn "xmonad --restart") -- Restarts xmonad
, ("M-S-q", io exitSuccess) -- Quits xmonad , ("M-S-q", io exitSuccess) -- Quits xmonad
, ("M-S-/", spawn "~/.xmonad/xmonad_keys.sh")
-- KB_GROUP Get Help
, ("M-S-/", spawn "~/.xmonad/xmonad_keys.sh") -- Get list of keybindings
, ("M-/", spawn "dtos-help") -- DTOS help/tutorial videos
-- KB_GROUP Run Prompt -- KB_GROUP Run Prompt
, ("M-S-<Return>", spawn "dmenu_run -i -p \"Run: \"") -- Dmenu , ("M-S-<Return>", spawn "dmenu_run -i -p \"Run: \"") -- Dmenu
@@ -487,8 +490,8 @@ main :: IO ()
main = do main = do
-- Launching three instances of xmobar on their monitors. -- Launching three instances of xmobar on their monitors.
xmproc0 <- spawnPipe "xmobar -x 0 $HOME/.config/xmobar/doom-one-xmobarrc" xmproc0 <- spawnPipe "xmobar -x 0 $HOME/.config/xmobar/doom-one-xmobarrc"
xmproc1 <- spawnPipe "xmobar -x 1 $HOME/.config/xmobar/xmobarrc" xmproc1 <- spawnPipe "xmobar -x 1 $HOME/.config/xmobar/doom-one-xmobarrc"
xmproc2 <- spawnPipe "xmobar -x 2 $HOME/.config/xmobar/xmobarrc" xmproc2 <- spawnPipe "xmobar -x 2 $HOME/.config/xmobar/doom-one-xmobarrc"
-- the xmonad, ya know...what the WM is named after! -- the xmonad, ya know...what the WM is named after!
xmonad $ ewmh def xmonad $ ewmh def
{ manageHook = myManageHook <+> manageDocks { manageHook = myManageHook <+> manageDocks