diff options
author | kitty piapiac <kcp@bsd.computer> | 2020-07-29 09:06:19 -0700 |
---|---|---|
committer | kitty piapiac <kcp@bsd.computer> | 2020-07-29 09:06:19 -0700 |
commit | e95ea8a8535f05f7647e86af6a7fc326c3bda3af (patch) | |
tree | 798c72c3b1d160adc505b33f44cf97078692a39e /src/config.nim | |
parent | 7c42a04d66df733594283c440a3025c6c8f3071f (diff) |
(。ヘ°) init commands
ILL WORK ON TILING AFTER THIS I PROMISE
Diffstat (limited to 'src/config.nim')
-rw-r--r-- | src/config.nim | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/config.nim b/src/config.nim index 4c4fb2f..628a4ff 100644 --- a/src/config.nim +++ b/src/config.nim @@ -8,9 +8,12 @@ const # if it isn't obvious, hex values go here colours* = ( - focused: 0xFBFDFF, - unfocused: 0x9BCDFF, - background: 0x232323) + focused: "#FBFDFF", + unfocused: "#9BCDFF", + background: "#232323") + + init* = @[ + "xsetroot -solid \"" & colours.background & "\""] # in pixels frameWidth* = 2 |