Changed Theme to Teal partially
This commit is contained in:
parent
1d04cbe23d
commit
76e37fd15c
5 changed files with 33 additions and 42 deletions
2
.config/xmonad/.gitignore
vendored
2
.config/xmonad/.gitignore
vendored
|
@ -1,3 +1,5 @@
|
||||||
|
*.hi
|
||||||
|
*.o
|
||||||
.ghc.*
|
.ghc.*
|
||||||
.stack-work
|
.stack-work
|
||||||
stack.*
|
stack.*
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
module Colors.DoomOne where
|
|
||||||
|
|
||||||
import XMonad
|
|
||||||
|
|
||||||
colorScheme = "doom-one"
|
|
||||||
|
|
||||||
colorBack = "#282c34"
|
|
||||||
colorFore = "#bbc2cf"
|
|
||||||
|
|
||||||
color01 = "#1c1f24"
|
|
||||||
color02 = "#ff6c6b"
|
|
||||||
color03 = "#98be65"
|
|
||||||
color04 = "#da8548"
|
|
||||||
color05 = "#51afef"
|
|
||||||
color06 = "#c678dd"
|
|
||||||
color07 = "#5699af"
|
|
||||||
color08 = "#202328"
|
|
||||||
color09 = "#5b6268"
|
|
||||||
color10 = "#da8548"
|
|
||||||
color11 = "#4db5bd"
|
|
||||||
color12 = "#ecbe7b"
|
|
||||||
color13 = "#3071db"
|
|
||||||
color14 = "#a9a1e1"
|
|
||||||
color15 = "#46d9ff"
|
|
||||||
color16 = "#dfdfdf"
|
|
||||||
|
|
||||||
colorTrayer :: String
|
|
||||||
colorTrayer = "--tint 0x282c34"
|
|
Binary file not shown.
18
.config/xmonad/lib/Colors/Teal.hs
Normal file
18
.config/xmonad/lib/Colors/Teal.hs
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
|
||||||
|
module Colors.Teal where
|
||||||
|
|
||||||
|
import XMonad
|
||||||
|
|
||||||
|
colorScheme = "teal"
|
||||||
|
|
||||||
|
colorBack = "#282c34"
|
||||||
|
colorFore = "#bbc2cf"
|
||||||
|
|
||||||
|
color01 = "#006666"
|
||||||
|
color02 = "#01F9C1"
|
||||||
|
color03 = "#5b6268"
|
||||||
|
color04 = "#b2d8d8"
|
||||||
|
color05 = "#02CB9E"
|
||||||
|
|
||||||
|
colorTrayer :: String
|
||||||
|
colorTrayer = "--tint 0x282c34"
|
|
@ -21,7 +21,7 @@ import Data.Maybe (fromJust)
|
||||||
import XMonad.Hooks.ManageDocks
|
import XMonad.Hooks.ManageDocks
|
||||||
import XMonad.Hooks.ManageHelpers
|
import XMonad.Hooks.ManageHelpers
|
||||||
import Data.Monoid
|
import Data.Monoid
|
||||||
import Colors.DoomOne
|
import Colors.Teal
|
||||||
import System.Exit
|
import System.Exit
|
||||||
import XMonad.Util.SpawnOnce
|
import XMonad.Util.SpawnOnce
|
||||||
import XMonad.Layout.Spacing
|
import XMonad.Layout.Spacing
|
||||||
|
@ -30,7 +30,7 @@ import qualified XMonad.StackSet as W
|
||||||
import qualified Data.Map as M
|
import qualified Data.Map as M
|
||||||
-- Personal Variables
|
-- Personal Variables
|
||||||
myTerminal = "alacritty"
|
myTerminal = "alacritty"
|
||||||
myTextEditor = "leafpad"
|
myTextEditor = "vim"
|
||||||
myWebBrowser = "firefox"
|
myWebBrowser = "firefox"
|
||||||
|
|
||||||
|
|
||||||
|
@ -68,9 +68,8 @@ clickable ws = "<action=xdotool key super+"++show i++">"++ws++"</action>"
|
||||||
|
|
||||||
-- Border colors for unfocused and focused windows, respectively.
|
-- Border colors for unfocused and focused windows, respectively.
|
||||||
--
|
--
|
||||||
myNormalBorderColor = "#282c34"
|
myNormalBorderColor = "#008080"
|
||||||
myFocusedBorderColor = "#46d9ff"
|
myFocusedBorderColor = "#01F9C6"
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
-- Key bindings. Add, modify or remove key bindings here.
|
-- Key bindings. Add, modify or remove key bindings here.
|
||||||
--
|
--
|
||||||
|
@ -98,7 +97,7 @@ myKeys =
|
||||||
,("<xf86monbrightnessdown>", spawn "lux -s 10%")
|
,("<xf86monbrightnessdown>", spawn "lux -s 10%")
|
||||||
|
|
||||||
--CHANGE KEYBOARD LAYOUT
|
--CHANGE KEYBOARD LAYOUT
|
||||||
,("M-<Space>", spawn "/bin/zsh /home/afonso/.config/xmonad/change-kb.sh")
|
,("M-<Space>", spawn "/bin/bash /home/afonso/.config/xmonad/change-kb.sh")
|
||||||
|
|
||||||
--brightness controls
|
--brightness controls
|
||||||
,("M-n", spawn "kitty -e nmtui")
|
,("M-n", spawn "kitty -e nmtui")
|
||||||
|
@ -298,19 +297,19 @@ main = do
|
||||||
logHook = dynamicLogWithPP $ xmobarPP
|
logHook = dynamicLogWithPP $ xmobarPP
|
||||||
{ ppOutput = \x -> hPutStrLn xmproc x -- xmobar on monitor 1
|
{ ppOutput = \x -> hPutStrLn xmproc x -- xmobar on monitor 1
|
||||||
-- Current workspace
|
-- Current workspace
|
||||||
, ppCurrent = xmobarColor color06 "" . wrap
|
, ppCurrent = xmobarColor color02 "" . wrap
|
||||||
("<box type=Bottom width=2 mb=2 color=" ++ color06 ++ ">") "</box>"
|
("<box type=Bottom width=2 mb=2 color=" ++ color02 ++ ">") "</box>"
|
||||||
-- Visible but not current workspace
|
-- Visible but not current workspace
|
||||||
, ppVisible = xmobarColor color06 "" . clickable
|
, ppVisible = xmobarColor color05 "" . clickable
|
||||||
-- Hidden workspace
|
-- Hidden workspace
|
||||||
, ppHidden = xmobarColor color05 "" . wrap
|
, ppHidden = xmobarColor color01 "" . wrap
|
||||||
("<box type=Top width=2 mt=2 color=" ++ color05 ++ ">") "</box>" . clickable
|
("<box type=Top width=2 mt=2 color=" ++ color01 ++ ">") "</box>" . clickable
|
||||||
-- Hidden workspaces (no windows)
|
-- Hidden workspaces (no windows)
|
||||||
, ppHiddenNoWindows = xmobarColor color05 "" . clickable
|
, ppHiddenNoWindows = xmobarColor color01 "" . clickable
|
||||||
-- Title of active window
|
-- Title of active window
|
||||||
, ppTitle = xmobarColor color16 "" . shorten 60
|
, ppTitle = xmobarColor color04 "" . shorten 60
|
||||||
-- Separator character
|
-- Separator character
|
||||||
, ppSep = "<fc=" ++ color09 ++ "> <fn=1>|</fn> </fc>"
|
, ppSep = "<fc=" ++ color03 ++ "> <fn=1>|</fn> </fc>"
|
||||||
-- Urgent workspace
|
-- Urgent workspace
|
||||||
, ppUrgent = xmobarColor color02 "" . wrap "!" "!"
|
, ppUrgent = xmobarColor color02 "" . wrap "!" "!"
|
||||||
-- Adding # of windows on current workspace to the bar
|
-- Adding # of windows on current workspace to the bar
|
||||||
|
|
Loading…
Reference in a new issue