@@ -1,13 +1,73 @@ | |||
! ------------------------------------------------------------------------------ | |||
! URxvt Options | |||
! ------------------------------------------------------------------------------ | |||
URxvt.scrollBar: false | |||
URxvt.scrollBar_right: false | |||
URxvt.scrollBar_floating: false | |||
URxvt.font: xft:Inconsolata\-dz:style=dz:size=16,xft:Inconsolata for Powerline:size=16 | |||
! ------------------------------------------------------------------------------ | |||
! Base16 Default Dark | |||
! ------------------------------------------------------------------------------ | |||
#define base00 #181818 | |||
#define base01 #282828 | |||
#define base02 #383838 | |||
#define base03 #585858 | |||
#define base04 #b8b8b8 | |||
#define base05 #d8d8d8 | |||
#define base06 #e8e8e8 | |||
#define base07 #f8f8f8 | |||
#define base08 #ab4642 | |||
#define base09 #dc9656 | |||
#define base0A #f7ca88 | |||
#define base0B #a1b56c | |||
#define base0C #86c1b9 | |||
#define base0D #7cafc2 | |||
#define base0E #ba8baf | |||
#define base0F #a16946 | |||
*.foreground: base05 | |||
#ifdef background_opacity | |||
*.background: [background_opacity]base00 | |||
#else | |||
*.background: base00 | |||
#endif | |||
*.cursorColor: base05 | |||
*.color0: base00 | |||
*.color1: base08 | |||
*.color2: base0B | |||
*.color3: base0A | |||
*.color4: base0D | |||
*.color5: base0E | |||
*.color6: base0C | |||
*.color7: base05 | |||
*.color8: base03 | |||
*.color9: base08 | |||
*.color10: base0B | |||
*.color11: base0A | |||
*.color12: base0D | |||
*.color13: base0E | |||
*.color14: base0C | |||
*.color15: base07 | |||
! Note: colors beyond 15 might not be loaded (e.g., xterm, urxvt), | |||
! use 'shell' template to set these if necessary | |||
*.color16: base09 | |||
*.color17: base0F | |||
*.color18: base01 | |||
*.color19: base02 | |||
*.color20: base04 | |||
*.color21: base06 | |||
! ------------------------------------------------------------------------------ | |||
! ROFI Color theme | |||
! ------------------------------------------------------------------------------ | |||
! rofi.color-enabled: true | |||
! rofi.color-window: #000000, #000000, #000000 | |||
! rofi.color-normal: #000000, #c1c1c1, #000000, #394249, #ffffff | |||
! rofi.color-active: #000000, #80cbc4, #000000, #394249, #80cbc4 | |||
! rofi.color-urgent: #000000, #ff1844, #000000, #394249, #ff1844 | |||
rofi.color-enabled: true | |||
rofi.color-window: #040404, #b25242, #b25242 | |||
rofi.color-normal: #040404, #b25242, #040404, #b25242, #bcddc6 | |||
rofi.color-active: #040404, #ffffff, #040404, #b25242, #ffffff | |||
rofi.color-urgent: #040404, #b25242, #040404, #b25242, #bcddc6 | |||
@@ -59,18 +59,25 @@ Runs a different function on startup depending on display mode. | |||
;; (load-theme 'solarized-dark t)) | |||
;; (set-frame-size (selected-frame) 90 40) | |||
(use-package sublime-themes | |||
(use-package base16-theme | |||
:config | |||
(load-theme 'spolsky t)) | |||
(load-file "~/.emacs.d/lisp/init-powerline.el") | |||
(load-theme 'base16-default-dark t) | |||
(defvar my/base16-colors base16-default-dark-colors) | |||
(setq evil-emacs-state-cursor `(,(plist-get my/base16-colors :base0D) box) | |||
evil-insert-state-cursor `(,(plist-get my/base16-colors :base0D) bar) | |||
evil-motion-state-cursor `(,(plist-get my/base16-colors :base0E) box) | |||
evil-normal-state-cursor `(,(plist-get my/base16-colors :base07) box) | |||
evil-replace-state-cursor `(,(plist-get my/base16-colors :base08) bar) | |||
evil-visual-state-cursor `(,(plist-get my/base16-colors :base09) box)) | |||
(set-face-attribute 'fringe nil :background nil)) | |||
(load-file "~/.emacs.d/lisp/init-powerline-doom-one.el") | |||
(setq powerline-height 24) | |||
(custom-set-faces | |||
'(org-done ((t (:foreground "PaleGreen" :box (:line-width 1 :color "PaleGreen") :weight bold)))) | |||
'(org-done ((t (:box (:line-width 1) :weight bold)))) | |||
'(org-level-1 ((t (:inherit outline-1 :height 1.3)))) | |||
'(org-todo ((t (:foreground "Pink" :box (:line-width 1 :color "Pink") :weight bold)))) | |||
'(powerline-evil-normal-face ((t (:inherit powerline-evil-base-face :background "forest green"))))) | |||
'(org-todo ((t (:box (:line-width 1) :weight bold))))) | |||
;; For old jazz theme | |||
;;(custom-set-faces |
@@ -10,19 +10,38 @@ exec --no-startup-id tlp start | |||
exec --no-startup-id xset r rate 225 30 | |||
# Disable window borders | |||
for_window [class="^.*"] border pixel 1 | |||
for_window [class="^.*"] border pixel 2 | |||
hide_edge_borders smart | |||
# class border backgr. text indicator child_border | |||
client.focused #b25242 #b25242 #ffffff #b25242 #b25242 | |||
# Base 16 Config | |||
set $base00 #181818 | |||
set $base01 #282828 | |||
set $base02 #383838 | |||
set $base03 #585858 | |||
set $base04 #b8b8b8 | |||
set $base05 #d8d8d8 | |||
set $base06 #e8e8e8 | |||
set $base07 #f8f8f8 | |||
set $base08 #ab4642 | |||
set $base09 #dc9656 | |||
set $base0A #f7ca88 | |||
set $base0B #a1b56c | |||
set $base0C #86c1b9 | |||
set $base0D #7cafc2 | |||
set $base0E #ba8baf | |||
set $base0F #a16946 | |||
client.focused $base0D $base0D $base00 $base01 | |||
client.focused_inactive $base02 $base02 $base03 $base01 | |||
client.unfocused $base01 $base01 $base03 $base01 | |||
client.urgent $base02 $base08 $base07 $base08 | |||
# Matrix Labritory | |||
for_window [title="^Figure \d+$"] floating enable | |||
# Adds gaps | |||
# gaps inner 12 | |||
# gaps outer 0 | |||
# smart_gaps on | |||
gaps inner 12 | |||
gaps outer 0 | |||
smart_gaps on | |||
# volume keys | |||
bindsym XF86AudioRaiseVolume exec amixer -D pulse sset Master 2%+ | |||
@@ -57,7 +76,7 @@ font pango:monospace 8 | |||
floating_modifier $mod | |||
# start a terminal | |||
bindsym $mod+Return exec i3-sensible-terminal | |||
bindsym $mod+Return exec urxvt | |||
bindsym $mod+backslash exec emacs | |||
# kill focused window | |||
@@ -127,7 +146,7 @@ bindsym $mod+bracketleft workspace 2 | |||
bindsym $mod+braceleft workspace 3 | |||
bindsym $mod+braceright workspace 4 | |||
bindsym $mod+parenleft workspace 5 | |||
bindsym $mod+asterisk workspace 6 | |||
bindsym $mod+equal workspace 6 | |||
bindsym $mod+astericks workspace 7 | |||
bindsym $mod+parenright workspace 8 | |||
bindsym $mod+plus workspace 9 | |||
@@ -138,7 +157,7 @@ bindsym $mod+Shift+bracketleft move container to workspace 2 | |||
bindsym $mod+Shift+braceleft move container to workspace 3 | |||
bindsym $mod+Shift+braceright move container to workspace 4 | |||
bindsym $mod+Shift+parenleft move container to workspace 5 | |||
bindsym $mod+Shift+asterisk move container to workspace 6 | |||
bindsym $mod+Shift+equal move container to workspace 6 | |||
bindsym $mod+Shift+astericks move container to workspace 7 | |||
bindsym $mod+Shift+parenright move container to workspace 8 | |||
bindsym $mod+Shift+plus move container to workspace 9 | |||
@@ -197,9 +216,15 @@ bar { | |||
font pango:Inconsolata 12 | |||
colors { | |||
focused_workspace #b25242 #b25242 #ffffff | |||
separator $base03 | |||
background $base01 | |||
statusline $base05 | |||
focused_workspace $base0C $base0D $base00 | |||
active_workspace $base02 $base02 $base07 | |||
inactive_workspace $base01 $base01 $base03 | |||
urgent_workspace $base08 $base08 $base07 | |||
} | |||
} | |||
exec_always feh --bg-scale ~/Pictures/viuxks.png | |||
exec_always feh --bg-scale ~/Pictures/gnuslashlinux.png | |||
#exec --no-startup-id polybar wolfe |
@@ -9,9 +9,8 @@ | |||
general { | |||
colors = true | |||
interval = 5 | |||
color_good = "#63b07a" | |||
color_bad = "#b25242" | |||
color_degraded = "#b28a42" | |||
color_good = "#a1b56c" | |||
color_bad = "#ab4642" | |||
} | |||
order += "volume master" |
@@ -10,6 +10,7 @@ | |||
call plug#begin('~/.vim/plugged') | |||
Plug 'chriskempson/base16-vim' | |||
Plug 'vim-airline/vim-airline' | |||
Plug 'vim-airline/vim-airline-themes' | |||
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } | |||
@@ -72,7 +73,8 @@ set wildignore+=*.png,*.jpg,*.gif | |||
set relativenumber | |||
set number | |||
set background=dark | |||
colorscheme jellybeans | |||
let base16colorspace=256 " Access colors present in 256 colorspace | |||
colorscheme base16-default-dark | |||
syntax enable | |||
set t_Co=256 | |||
filetype on |