commit 5ec14bd7767fa7867a036cb520672f91034aa833
parent aa850e098107d6ced47d1dc09441c0ba7e3d1b4b
Author: pyratebeard <root@pyratebeard.net>
Date: Thu, 7 May 2020 13:34:30 +0100
downtime theme everywhere
Diffstat:
13 files changed, 412 insertions(+), 24 deletions(-)
diff --git a/2bwm/config.h b/2bwm/config.h
@@ -22,7 +22,7 @@ static const uint8_t offsets[] = {10,10,20,20};
*2)fixedcol 3)unkilcol
*4)fixedunkilcol 5)outerbordercol
*6)emptycol */
-static const char *colors[] = {"#6ca758","#161719","#33708c","#8d3636","#535071","#42454d","#161719"};
+static const char *colors[] = {"#929eb5","#212021","#8fbed3","#e29e84","#888aa9","#4e495a","#212021"};
/* if this is set to true the inner border and outer borders colors will be swapped */
static const bool inverted_colors = true;
///---Cursor---///
diff --git a/dunst/.config/dunst/dunstrc b/dunst/.config/dunst/dunstrc
@@ -68,7 +68,7 @@
frame_width = 3
# Defines color of the frame around the notification window.
- frame_color = "#6ca758"
+ frame_color = "#929eb5"
# Define a color for the separator.
# possible values are:
@@ -249,22 +249,25 @@
[urgency_low]
# IMPORTANT: colors have to be defined in quotation marks.
# Otherwise the "#" and following would be interpreted as a comment.
- background = "#42454d"
- foreground = "#dceef1"
+ background = "#212021"
+ foreground = "#8fbed3"
+ frame_color = "#8fbed3"
timeout = 10
# Icon for notifications with low urgency, uncomment to enable
#icon = /path/to/icon
[urgency_normal]
- background = "#202224"
- foreground = "#dceef1"
+ background = "#212021"
+ foreground = "#b8d680"
+ frame_color = "#b8d680"
timeout = 10
# Icon for notifications with normal urgency, uncomment to enable
#icon = /path/to/icon
[urgency_critical]
- background = "#813939"
- foreground = "#dceef1"
+ background = "#212021"
+ foreground = "#e29e84"
+ frame_color = "#e29e84"
timeout = 0
# Icon for notifications with critical urgency, uncomment to enable
#icon = /path/to/icon
diff --git a/git/.gitconfig b/git/.gitconfig
@@ -5,5 +5,5 @@
username = pyratebeard
signingkey = 0xC7877C715113A16D
[color "status"]
- untracked = blue
- changed = cyan
+ untracked = blue bold
+ changed = blue
diff --git a/interrobang/.interrobangrc b/interrobang/.interrobangrc
@@ -8,8 +8,8 @@
set font = -misc-tamzen-medium-r-normal-*-17-120-100-100-c-0-iso8859-1
#set geometry = top
set geometry = 500x30+20+20
-set colors = #dceef1 #202224 #535071 #202224 #cd6e42 #42454d
-set border = 3px #76b660
+set colors = #fbf6f6 #212021 #888aa9 #212021 #b8d680 #4e495a
+set border = 3px #929eb5
set bangchar = !
set run_hook = %s
#set run_hook = %s || (notify-send "Error: command not found";interrobang)
diff --git a/irssi/.irssi/config b/irssi/.irssi/config
@@ -104,7 +104,7 @@ settings = {
indent = "12";
};
"fe-common/core" = {
- theme = "futuremyth.theme";
+ theme = "downtime.theme";
autolog_path = "/var/log/irc/$tag/$0.log";
autolog = "yes";
};
diff --git a/irssi/.irssi/downtime.theme b/irssi/.irssi/downtime.theme
@@ -0,0 +1,283 @@
+# default foreground color (%N) - -1 is the "default terminal color"
+default_color = "-1";
+
+# print timestamp/servertag at the end of line, not at beginning
+info_eol = "false";
+
+# these characters are automatically replaced with specified color
+# (dark grey by default)
+replaces = { "[]" = "%g$*%n"; };
+
+abstracts = {
+
+ ############# generic ###############################
+
+ indent_default = " + ";
+
+ # text to insert at the beginning of each non-message line
+ # line_start = "%g//%n ";
+ line_start = "";
+
+ # timestamp styling, nothing by default
+ timestamp = "";
+
+ # any kind of text that needs hilighting, default is to bold
+ hilight = "%_$*%_";
+
+ # any kind of error message, default is bright red
+ error = "%R$*%n";
+
+ # channel name is printed
+ channel = "%b$*%n";
+
+ # nick is printed
+ nick = "%_$*%_";
+
+ # nick host is printed
+ nickhost = "%g$*";
+
+ # server name is printed
+ server = "%_$*%_";
+
+ # some kind of comment is printed
+ comment = "%n(%b\"$*\"%n);";
+
+ # reason for something is printed (part, quit, kick, ..)
+ reason = "{comment $*}";
+
+ # mode change is printed ([+o nick])
+ mode = "{comment $*}";
+
+ ## channel specific messages
+
+ # highlighted nick/host is printed (joins)
+ channick_hilight = "%g$*%N";
+ chanhost_hilight = "{nickhost $*}";
+
+ # nick/host is printed (parts, quits, etc.)
+ channick = "$*";
+ chanhost = "{nickhost $*}";
+
+ # highlighted channel name is printed
+ channelhilight = "%y$*%n";
+
+ # ban/ban exception/invite list mask is printed
+ ban = "$*";
+
+ ########### messages #################################
+
+ # the basic styling of how to print message, $0 = nick mode, $1 = nick
+ # msgnick = "$1-$0%K·%N %|";
+ msgnick = "%m$0%N$1 %Y: %N";
+ # msgnick = "%K$0%N $1 %K· %|%N";
+
+ # $0 = nick mode, $1 = nick
+ #ownmsgnick = "{msgnick $0 $1}";
+ ownmsgnick = "%c$0%N$1 %Y: %N";
+ ownnick = "%c$*%n";
+
+ # public message in channel, $0 = nick mode, $1 = nick
+ pubmsgnick = "{msgnick $0 $1}";
+ pubnick = "%m$*%n";
+
+ # public highlighted message in channel
+ pubmsghinick = "{msgnick $0 $1}";
+ menick = "%G$*%n";
+
+ # channel name is printed with message
+ msgchannel = "%K:%m$*%n";
+
+ # private message, $0 = nick, $1 = host
+ privmsg = "$0=%b\"$1-\"%n ";
+
+ # private message from you, $0 = "msg", $1 = target nick
+ ownprivmsg = "$0=%b\"$1-\"%n ";
+
+ # private message in query
+ # privmsgnick = "{msgnick $*}";
+ privmsgnick = "%g<%N %|";
+
+ # own private message in query
+ #ownprivmsgnick = "{privmsgnick $*}";
+ ownprivmsgnick = "%r>%N %|";
+ #ownprivnick = "$*";
+
+
+ ########## Actions (/ME stuff) #########################
+
+ # generic one that's used by most actions
+ action = " %m$* %Y* %m%|";
+
+ # own action, both private/public
+ # ownaction = "{action $*}";
+ ownaction = " %m$* %Y*%N%m";
+
+ # own action with target, both private/public
+ ownaction_target = "{action $*}";
+
+ # private action sent by others
+ pvtaction = "{action $*}";
+ pvtaction_query = "{action $*}";
+
+ # public action sent by others
+ pubaction = "{action $*}";
+
+
+ ########## other IRC events #############################
+
+ # whois
+ whois = "%# $[8]0 = $1-;";
+
+ # notices
+ ownnotice = "%NNote n = %Mnew%n $0 ($1-) ";
+ notice = "%M$*%n ";
+ pubnotice_channel = " %N($*)";
+ pvtnotice_host = " %N($*)";
+ servernotice = " %N($*)";
+
+ # CTCPs
+ ownctcp = "%NCTCP c = %Mnew%n $0 ($1-) ";
+ ctcp = "%N$*%n";
+
+ # wallops
+ wallop = "%K$*%n: ";
+ wallop_nick = "%n$*";
+ wallop_action = "%K * $*%n ";
+
+ # netsplits
+ netsplit = " %Rnsplit %R< %b\"$*\"%n";
+ netjoin = " %Gnjoin %G> %b\"$*\"%n";
+
+ # /names list
+ names_prefix = "%Y!%M! names %Y!%n ";
+ names_nick = "%_$2$0%_%n$1- ";
+ names_nick_op = "{names_nick $* %R}";
+ names_nick_halfop = "{names_nick $* %C}";
+ names_nick_voice = "{names_nick $* %B}";
+ names_users = "%Y!%M! names %Y!%n $1";
+ names_channel = "\"%b$*\"%n";
+
+ # DCC
+ dcc = "%g$*%n";
+ dccfile = "%_$*%_";
+
+ # DCC chat, own msg/action
+ dccownmsg = "%g /* $0 ($1-) */";
+ dccownnick = "$*%n";
+ dccownquerynick = "$*%n";
+ dccownaction = "{action $*}";
+ dccownaction_target = "{action $*}";
+
+ # DCC chat, others
+ dccmsg = "%g/* $1- ($0) */";
+ dccquerynick = "%g$*%n";
+ dccaction = "{action $*}";
+
+ ######## statusbar/topicbar ############################
+
+ # default background for all statusbars. You can also give
+ # the default foreground color for statusbar items.
+ sb_background = "%9";
+
+ # default backround for "default" statusbar group
+ #sb_default_bg = "%4";
+ # background for prompt / input line
+ sb_prompt_bg = "%n";
+ # background for info statusbar
+ #sb_info_bg = "%8";
+ # background for topicbar (same default)
+ sb_topic_bg = "%n";
+
+ # text at the beginning of statusbars. sb-item already puts
+ # space there,so we don't use anything by default.
+ sbstart = "";
+ # text at the end of statusbars. Use space so that it's never
+ # used for anything.
+ sbend = "";
+
+ topicsbstart = "$*";
+ topicsbend = "$*";
+
+ prompt = " %n: ";
+ # prompt = " %K└╼ ";
+
+ sb = "%c[%W$*%c]";
+ sbmode = " %b[%y%y+%C$*%b]";
+ sbaway = " %g/* zZzZ */%n";
+ sbservertag = ":%g$0%n";
+ sbnickmode = "%y$0%W";
+
+ # Usercount
+ sb_usercount = "{sb %_$0%_ nicks ($1-)}";
+ sb_uc_ircops = "%_*%_$*";
+ sb_uc_ops = "%_@%r$*%n";
+ sb_uc_halfops = "%_%%%g$*%n";
+ sb_uc_voices = "%_+%y$*%n";
+ sb_uc_normal = "%w$*%n";
+ sb_uc_space = " ";
+ # activity in statusbar
+
+ # ',' separator
+ sb_act_sep = " ";
+ # normal text
+ sb_act_text = "%R%9$*%n";
+ # public message
+ sb_act_msg = "%G%9$*%n";
+ # hilight
+ sb_act_hilight = "%b%9$*%n";
+ # hilight with specified color, $0 = color, $1 = text
+ sb_act_hilight_color = "%R%9$1-%n";
+};
+
+########################################################
+
+formats = {
+ "fe-common/core" = {
+ line_start = "{line_start}";
+ line_start_irssi = "{line_start}";
+
+ join = " %g> %K{channick $0}";
+ part = " %b< %K{channick $0}";
+ kick = " %R< %K{channick $0}";
+ quit = " %r< %K{channick $0}";
+ quit_once = "{channel $3} {channick $0} {chanhost $1} %kquit {reason %C$2}";
+
+ nick_changed = "%G{channick $[-12]0} %G>%n {channick $1}";
+ your_nick_changed = "%g you %G>%n {channick $1}";
+
+ pubmsg = "{pubmsgnick $2 {pubnick $[-11]0}}$1";
+
+ own_msg = "{ownmsgnick $2 {ownnick $[-11]0}}$1";
+ own_msg_channel = "{ownmsgnick $3 {ownnick $[-11]0}{msgchannel $1}}$2";
+ own_msg_private_query = "{ownprivmsgnick {ownprivnick $[-11]2}}$1";
+
+ pubmsg_me = "{pubmsghinick $2 {menick $[-11]0}}$1";
+ pubmsg_me_channel = "{pubmsghinick $3 {menick $[-11]0}{msgchannel $1}}$2";
+
+ pubmsg_hilight = "{pubmsghinick $3 {menick $[-11]1}}$2";
+ pubmsg_hilight_channel = "{pubmsghinick $0 $[-11]1$4{msgchannel $2}}$3";
+
+ pubmsg_channel = "{pubmsgnick {pubnick %g$[-11]0}$2}$1";
+ msg_private_query = "{privmsgnick $[-11]0}$2";
+ new_topic = " %ctopic %W= %|%B'$2' %non %b$1%n%W[set by {nick %y$0}]";
+
+ endofnames = "%Y!%M! names %Y!%m Total: {hilight $2} ops, {hilight $3} halfops, {hilight $4} voices, {hilight $5} normal%n";
+ };
+ "fe-common/irc" = {
+ chanmode_change = "%Y!%W! mode %y!%n {channick $1}";
+ server_chanmode_change = "%Y!%W! mode %y!%n {channick $1}";
+
+ own_action = "{ownaction $[-11]0} $1";
+ action_private = "{pvtaction $[-11]0}$1";
+ action_private_query = "{pvtaction_query $[-11]0} $2";
+ action_public = "{pubaction $[-11]0}$1";
+ };
+ "Irssi::Script::ichat" = { ichat_timestamp = "%Y>%W> $1 %y>%n"; };
+ "Irssi::Script::adv_windowlist" = {
+ awl_mouse = "no";
+ awl_display_key = "%w$H $N $C $S";
+ awl_display_key_active = "$H%0%c $N $C $S";
+ awl_display_header = "%K$C";
+ awl_separator = " ";
+ };
+};
diff --git a/mutt/.mutt/muttrc b/mutt/.mutt/muttrc
@@ -28,7 +28,7 @@ set mail_check = 120
# colours
color normal default default
-color indicator magenta black
+color indicator cyan black
color tree default default
color status white black
diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf
@@ -75,7 +75,7 @@ bind : command-prompt
# panes
set -g pane-border-style fg=black
-set -g pane-active-border-style fg=colour4
+set -g pane-active-border-style fg=colour5
# messaging
set -g message-style fg=white,bg=black,bold
@@ -89,14 +89,14 @@ setw -g aggressive-resize on
# status bar
set -g status-justify right
-set -g status-bg black
+set -g status-bg default
set -g status-fg blue
set -g status-interval 5
-setw -g window-status-format "#[bg=black,fg=magenta] #I #[bg=black,fg=magenta] #W "
-setw -g window-status-current-format "#[bg=yellow,fg=black] #I #[bg=black,fg=yellow] #W "
+setw -g window-status-format "#[bg=default,fg=magenta] #I #[bg=default,fg=magenta] #W "
+setw -g window-status-current-format "#[bg=black,fg=cyan] #I #[bg=black,fg=cyan] #W "
set -g status-justify left
-set-option -g status-right '#[bg=black,fg=blue] #H #[default] #{online_status} #[bg=black,fg=cyan] %Y-%m-%d %H:%M #[default]'
+set-option -g status-right '#[bg=default,fg=magenta] #H #[default] #{online_status} #[bg=default,fg=colour12] %Y-%m-%d %H:%M #[default]'
set-option -g status-left ''
# online and offline icon for tmux-online-status
@@ -133,13 +133,13 @@ set -g @plugin 'tmux-plugins/tmux-online-status'
# Also, change some visual styles when window keys are off
bind-key -T root F12 \
set-option -g prefix None \;\
- setw -g window-status-current-format "#[bg=colour8,fg=black] #I #[bg=black,fg=colour8] #W " \;\
+ setw -g window-status-current-format "#[bg=black,fg=colour5] #I #[bg=black,fg=colour5] #W " \;\
refresh-client -S \;\
bind-key -T root F11 \
set-option -g prefix ` \;\
bind ` send-prefix \;\
- setw -g window-status-current-format "#[bg=yellow,fg=black] #I #[bg=black,fg=yellow] #W " \;\
+ setw -g window-status-current-format "#[bg=black,fg=cyan] #I #[bg=black,fg=cyan] #W " \;\
refresh-client -S
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
diff --git a/urxvt-colors/downtime b/urxvt-colors/downtime
@@ -0,0 +1,38 @@
+! downtime
+! special
+*.foreground: #fbf6f6
+*.background: #212021
+*.cursorColor: #fbf6f6
+
+! black
+*.color0: #4e495a
+*.color8: #6b6573
+
+! red
+*.color1: #e29e84
+*.color9: #b8a3a7
+
+! green
+*.color2: #b6ce63
+*.color10: #b8d680
+
+! yellow
+*.color3: #d4cd61
+*.color11: #d3c284
+
+! blue
+*.color4: #8fbed3
+*.color12: #929eb5
+
+! magenta
+*.color5: #888aa9
+*.color13: #9c96ae
+
+! cyan
+*.color6: #cfe063
+*.color14: #dee773
+
+! white
+*.color7: #fbf6f6
+*.color15: #d4e4bf
+
diff --git a/urxvt/.Xdefaults b/urxvt/.Xdefaults
@@ -36,5 +36,5 @@ urxvt.saveLines: 9999
urxvt.iso14755: false
urxvt.iso14755_52: false
-#include "/home/pyratebeard/dot/urxvt-colors/futuremyth"
+#include "/home/pyratebeard/dot/urxvt-colors/downtime"
diff --git a/vim/.vim/colors/downtime.vim b/vim/.vim/colors/downtime.vim
@@ -0,0 +1,64 @@
+" downtime by pyratebeard
+
+set background=dark
+hi clear
+
+if exists("syntax_on")
+ syntax reset
+endif
+
+let g:colors_name="downtime"
+
+hi ColorColumn term=NONE cterm=NONE ctermfg=NONE ctermbg=0
+hi Comment term=NONE cterm=NONE ctermfg=5 ctermbg=0
+hi Constant term=NONE cterm=NONE ctermfg=10 ctermbg=NONE
+hi Conditional term=NONE cterm=NONE ctermfg=14 ctermbg=NONE
+hi Cursor term=NONE cterm=NONE ctermfg=7 ctermbg=NONE
+hi CursorLine term=NONE cterm=NONE ctermfg=NONE ctermbg=0
+hi DiffAdd term=NONE cterm=NONE ctermfg=2 ctermbg=NONE
+hi DiffChange term=NONE cterm=NONE ctermfg=3 ctermbg=NONE
+hi DiffDelete term=NONE cterm=NONE ctermfg=1 ctermbg=NONE
+hi DiffText term=NONE cterm=NONE ctermfg=1 ctermbg=8
+hi Directory term=NONE cterm=NONE ctermfg=7 ctermbg=NONE
+hi Error term=NONE cterm=NONE ctermfg=1 ctermbg=NONE
+hi ErrorMsg term=NONE cterm=NONE ctermfg=0 ctermbg=1
+hi FoldColumn term=NONE cterm=NONE ctermfg=238 ctermbg=NONE
+hi Folded term=NONE cterm=NONE ctermfg=238 ctermbg=NONE
+hi Function term=NONE cterm=NONE ctermfg=13 ctermbg=NONE
+hi Identifier term=NONE cterm=NONE ctermfg=5 ctermbg=NONE
+hi IncSearch term=NONE cterm=NONE ctermfg=0 ctermbg=14
+hi MatchParen term=NONE cterm=NONE ctermfg=1 ctermbg=NONE
+hi NonText term=NONE cterm=NONE ctermfg=238 ctermbg=NONE
+hi Normal term=NONE cterm=NONE ctermfg=7 ctermbg=NONE
+hi PreProc term=NONE cterm=NONE ctermfg=7 ctermbg=NONE
+hi Search term=NONE cterm=NONE ctermfg=0 ctermbg=14
+hi Special term=NONE cterm=NONE ctermfg=7 ctermbg=NONE
+hi SpecialKey term=NONE cterm=NONE ctermfg=238 ctermbg=NONE
+hi SpellBad term=NONE cterm=NONE ctermfg=1 ctermbg=0
+hi Statement term=NONE cterm=NONE ctermfg=2 ctermbg=NONE
+hi StatusLine term=NONE cterm=NONE ctermfg=8 ctermbg=0
+hi String term=NONE cterm=NONE ctermfg=15 ctermbg=NONE
+hi TabLineSel term=NONE cterm=NONE ctermfg=251 ctermbg=NONE
+hi Todo term=NONE cterm=NONE ctermfg=251 ctermbg=66
+hi Type term=NONE cterm=NONE ctermfg=15 ctermbg=NONE
+hi VertSplit term=NONE cterm=NONE ctermfg=0 ctermbg=0
+hi Visual term=NONE cterm=NONE ctermfg=0 ctermbg=6
+hi WarningMsg term=NONE cterm=NONE ctermfg=242 ctermbg=NONE
+hi LineNr term=NONE cterm=NONE ctermfg=8 ctermbg=NONE
+hi CursorLineNr term=NONE cterm=NONE ctermfg=6 ctermbg=0
+hi Pmenu term=NONE cterm=NONE ctermfg=7 ctermbg=8
+hi PmenuSel term=NONE cterm=NONE ctermfg=7 ctermbg=4
+hi PmenuSbar term=NONE cterm=NONE ctermfg=238 ctermbg=14
+hi PmenuThumb term=NONE cterm=NONE ctermfg=238 ctermbg=66
+hi Underlined term=underline cterm=underline ctermfg=NONE ctermbg=NONE
+
+hi! link diffAdded DiffAdd
+hi! link diffRemoved DiffDelete
+hi! link diffChanged DiffChange
+hi! link StatusLineNC StatusLine
+hi! link Title Normal
+hi! link MoreMsg Normal
+hi! link Question DiffChange
+hi! link TabLine StatusLineNC
+hi! link TabLineFill StatusLineNC
+hi! link VimHiGroup VimGroup
diff --git a/vim/.vimrc b/vim/.vimrc
@@ -112,7 +112,7 @@ set shortmess+=I
" syntax highlighting and colors
syntax on
-colorscheme futuremyth
+colorscheme downtime
filetype off
" stop unnecessary rendering
diff --git a/xinit/.xinitrc b/xinit/.xinitrc
@@ -44,7 +44,7 @@ if [ -d /etc/X11/xinit/xinitrc.d ] ; then
fi
# set nice background.
-xsetroot -solid '#42454d'
+xsetroot -solid '#4e495a'
# set nice pointer cursor.
xsetroot -cursor_name left_ptr &