unifying colors

This commit is contained in:
Julien Palard 2020-06-04 15:05:39 +02:00
parent 4adb75e125
commit 4d1464675f
3 changed files with 10 additions and 5 deletions

View File

@ -168,11 +168,11 @@ bindsym $mod+r mode "resize"
bar {
status_command i3status
colors {
background #002b36
statusline #93a1a1
background #3F3F3F
statusline #DCDCCC
separator #666666
focused_workspace #4c7899 #285577 #ffffff
focused_workspace #3F3F3F #3F3F3F #ffffff
active_workspace #333333 #5f676a #ffffff
inactive_workspace #333333 #222222 #888888
urgent_workspace #2f343a #900000 #ffffff

View File

@ -3,7 +3,6 @@
;; Started on Sun Nov 16 12:00:18 2008 Julien Palard
;;
;; Packages I typically use can be reinstalled by using:
;; M-x package-refresh-contents
;; M-x package-install-selected-packages
(setq user-full-name "Julien Palard")
@ -11,6 +10,11 @@
(require 'package)
(package-initialize)
;; If there are no archived package contents, refresh them
(when (not package-archive-contents)
(package-refresh-contents))
(setq package-archives '(("gnu" . "https://elpa.gnu.org/packages/")
("org" . "https://orgmode.org/elpa/")
("melpa" . "https://melpa.org/packages/")))
@ -126,6 +130,7 @@
(add-hook 'css-mode-hook 'hexcolour-add-to-font-lock)
(add-hook 'sass-mode-hook 'hexcolour-add-to-font-lock)
(add-hook 'emacs-lisp-mode-hook 'hexcolour-add-to-font-lock)
(add-hook 'conf-xdefaults-mode-hook 'hexcolour-add-to-font-lock)
(add-hook 'python-mode-hook 'blacken-mode)

View File

@ -26,7 +26,7 @@ export LC_MEASUREMENT=en_US.UTF-8
export LC_IDENTIFICATION=en_US.UTF-8
# Set background color
xsetroot -solid "#002b36"
xsetroot -solid "#3F3F3F"
# Enable core dumps in case something goes wrong
ulimit -c unlimited