Added PIM, lf, xmpp, moved to termite, my muttrc (cleaned peronal info as much as possible) and started working on snippets
parent
b13ce29060
commit
c1c739341c
@ -0,0 +1,37 @@
|
||||
! special
|
||||
*.foreground: #565e65
|
||||
!*.background: rgba:f3f3/f4f4/f5f5/0000
|
||||
*.background: rgb:f3/f4/f5
|
||||
*.cursorColor: #565e65
|
||||
|
||||
! black
|
||||
*.color0: #1c2023
|
||||
*.color8: #747c84
|
||||
|
||||
! red
|
||||
*.color1: #c7ae95
|
||||
*.color9: #c7ae95
|
||||
|
||||
! green
|
||||
*.color2: #95c7ae
|
||||
*.color10: #95c7ae
|
||||
|
||||
! yellow
|
||||
*.color3: #aec795
|
||||
*.color11: #aec795
|
||||
|
||||
! blue
|
||||
*.color4: #ae95c7
|
||||
*.color12: #ae95c7
|
||||
|
||||
! magenta
|
||||
*.color5: #c795ae
|
||||
*.color13: #c795ae
|
||||
|
||||
! cyan
|
||||
*.color6: #95aec7
|
||||
*.color14: #95aec7
|
||||
|
||||
! white
|
||||
*.color7: #c7ccd1
|
||||
*.color15: #e1eaf3
|
@ -0,0 +1,37 @@
|
||||
! special
|
||||
*.foreground: #565e65
|
||||
*.background: #f8f1b1
|
||||
*.cursorColor: #565e65
|
||||
|
||||
! black
|
||||
*.color0: #222425
|
||||
*.color8: #747c84
|
||||
|
||||
! red
|
||||
*.color1: #eca55c
|
||||
*.color9: #ed723b
|
||||
|
||||
! green
|
||||
*.color2: #75daa6
|
||||
*.color10: #95ac41
|
||||
|
||||
! yellow
|
||||
*.color3: #f9ca62
|
||||
*.color11: #dfe96f
|
||||
|
||||
! blue
|
||||
*.color4: #ae95c7
|
||||
*.color12: #ae95c7
|
||||
|
||||
! magenta
|
||||
*.color5: #c795ae
|
||||
*.color13: #c795ae
|
||||
|
||||
! cyan
|
||||
*.color6: #95aec7
|
||||
*.color14: #95aec7
|
||||
|
||||
! white
|
||||
*.color7: #c8ced5
|
||||
*.color15: #cedbe8
|
||||
|
@ -0,0 +1,99 @@
|
||||
#!/bin/sh
|
||||
# Many Thanks to Brodie Robertson for this!
|
||||
# https://github.com/BrodieRobertson
|
||||
# Clean fullscreen aims to provide a means to have a clean desktop when using
|
||||
# transparency in bspwm, the issue I found was that when a window entered,
|
||||
# fullscreen mode I was still able to see the windows behind it, I think this
|
||||
# looks kind of gross so that's why this exists.
|
||||
|
||||
HideBar() {
|
||||
polybar-msg cmd hide
|
||||
}
|
||||
|
||||
ShowBar() {
|
||||
polybar-msg cmd show
|
||||
}
|
||||
|
||||
HideNodes() {
|
||||
for node in $1; do
|
||||
bspc node "$node" -g hidden=on
|
||||
done
|
||||
}
|
||||
|
||||
HideTiled() {
|
||||
Nodes=$(bspc query -N -n .tiled -d "$1")
|
||||
HideNodes "$Nodes"
|
||||
}
|
||||
|
||||
ShowNodes() {
|
||||
Nodes=$(bspc query -N -n .hidden -d "$1")
|
||||
|
||||
for node in $Nodes; do
|
||||
bspc node "$node" -g hidden=off
|
||||
done
|
||||
}
|
||||
|
||||
bspc subscribe node_state | while read -r Event Monitor Desktop Node State Active
|
||||
do
|
||||
PrimaryMonitor=$(bspc query -M -m primary)
|
||||
# Hide bar and nodes when node becomes fullscreen, otherwise show
|
||||
if [ "$State" = "fullscreen" ] && [ "$Active" = "on" ]; then
|
||||
# Only consider nodes on primary monitor
|
||||
if [ "$PrimaryMonitor" = "$Monitor" ]; then
|
||||
HideBar
|
||||
fi
|
||||
HideTiled "$Desktop"
|
||||
else
|
||||
if [ "$PrimaryMonitor" = "$Monitor" ]; then
|
||||
ShowBar
|
||||
fi
|
||||
ShowNodes "$Desktop"
|
||||
fi
|
||||
done &
|
||||
|
||||
bspc subscribe node_remove | while read Event Monitor Desktop Node
|
||||
do
|
||||
PrimaryMonitor="$(bspc query -M -m primary)"
|
||||
|
||||
# Show bar if no nodes are fullscreen on current desktop
|
||||
if [ "$Monitor" = "$PrimaryMonitor" ] && \
|
||||
[ -z "$(bspc query -N -n .fullscreen -d "$Desktop")" ]; then
|
||||
ShowBar
|
||||
fi
|
||||
ShowNodes "$Desktop"
|
||||
done &
|
||||
|
||||
bspc subscribe node_transfer | while read -r Event SrcMonitor SrcDesktop SrcNode DestMonitor Dest Desktop DestNode
|
||||
do
|
||||
# Show nodes on src desktop and hide nodes on dest desktop
|
||||
# If src node is in full screen mode
|
||||
if [ -n "$(bspc query -N -n "$SrcNode".fullscreen)" ]; then
|
||||
ShowNodes "$SrcDesktop"
|
||||
HideTiled "$DestDesktop"
|
||||
ShowBar
|
||||
fi
|
||||
|
||||
# Hide any fullscreen nodes on destination desktop
|
||||
FullscreenDest=$(bspc query -N -n .fullscreen -d "$DestDesktop" \
|
||||
| sed "/$SrcNode/d")
|
||||
if [ -n "$FullscreenDest" ]; then
|
||||
HideNodes "$FullscreenDest"
|
||||
fi
|
||||
done &
|
||||
|
||||
bspc subscribe desktop_focus | while read -r Event Monitor Desktop
|
||||
do
|
||||
PrimaryMonitor="$(bspc query -M -m primary)"
|
||||
FullscreenNode="$(bspc query -N -n .fullscreen -d "$Desktop")"
|
||||
|
||||
# Only consider nodes on primary monitor
|
||||
if [ "$PrimaryMonitor" = "$Monitor" ]; then
|
||||
# Hide bar if desktop contains fullscreen node
|
||||
if [ -n "$FullscreenNode" ]; then
|
||||
HideBar
|
||||
# Otherwise show the bar
|
||||
else
|
||||
ShowBar
|
||||
fi
|
||||
fi
|
||||
done &
|
@ -0,0 +1,42 @@
|
||||
# ################ #
|
||||
# khal config #
|
||||
# ################ #
|
||||
|
||||
# Diplayed calendars
|
||||
[calendars]
|
||||
|
||||
[[calendars]]
|
||||
path = ~/.vdirsyncer/calendars/*
|
||||
type = discover
|
||||
color = light blue
|
||||
|
||||
[sqlite]
|
||||
path = ~/.khal/khal.db
|
||||
|
||||
[locale]
|
||||
local_timezone = Europe/Paris
|
||||
#default_timezone = America/New_York
|
||||
|
||||
timeformat = %H:%M
|
||||
dateformat = %d.%m.
|
||||
longdateformat = %d.%m.%Y
|
||||
datetimeformat = %d.%m. %H:%M
|
||||
longdatetimeformat = %d.%m.%Y %H:%M
|
||||
unicode_symbols = False
|
||||
firstweekday = 0
|
||||
weeknumbers = right
|
||||
|
||||
[default]
|
||||
default_calendar = Ordinaire
|
||||
timedelta = 7d # the default timedelta that list uses
|
||||
highlight_event_days = True # the default is False
|
||||
|
||||
[highlight_days]
|
||||
default_color = dark green
|
||||
multiple = dark green
|
||||
|
||||
[view]
|
||||
monthdisplay = firstday
|
||||
theme = mine
|
||||
|
||||
# vim:ft=conf
|
@ -0,0 +1,132 @@
|
||||
# Copyright (c) 2013-2017 Christian Geier et al.
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining
|
||||
# a copy of this software and associated documentation files (the
|
||||
# "Software"), to deal in the Software without restriction, including
|
||||
# without limitation the rights to use, copy, modify, merge, publish,
|
||||
# distribute, sublicense, and/or sell copies of the Software, and to
|
||||
# permit persons to whom the Software is furnished to do so, subject to
|
||||
# the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be
|
||||
# included in all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
# Add your themes here defined by a unique name (e.g. 'mine'). Then
|
||||
# sudo cp $XDG_CONFIG/khal/themes/colors.py /usr/lib/python3.8/site-packages/khal/ui/colors.py
|
||||
# and inform your new themes in khal/settings/khal.spec
|
||||
|
||||
dark = [
|
||||
('header', 'white', 'black'),
|
||||
('footer', 'white', 'black'),
|
||||
('line header', 'black', 'white', 'bold'),
|
||||
('bright', 'dark blue', 'white', ('bold', 'standout')),
|
||||
('list', 'black', 'white'),
|
||||
('list focused', 'white', 'light blue', 'bold'),
|
||||
('edit', 'black', 'white'),
|
||||
('edit focused', 'white', 'light blue', 'bold'),
|
||||
('button', 'black', 'dark cyan'),
|
||||
('button focused', 'white', 'light blue', 'bold'),
|
||||
|
||||
('reveal focus', 'black', 'light gray'),
|
||||
('today focus', 'white', 'dark magenta'),
|
||||
('today', 'dark gray', 'dark green',),
|
||||
|
||||
('date header', 'light gray', 'black'),
|
||||
('date header focused', 'black', 'white'),
|
||||
('date header selected', 'dark gray', 'light gray'),
|
||||
|
||||
('dayname', 'light gray', ''),
|
||||
('monthname', 'light gray', ''),
|
||||
('weeknumber_right', 'light gray', ''),
|
||||
('edit', 'white', 'dark blue'),
|
||||
('alert', 'white', 'dark red'),
|
||||
('mark', 'white', 'dark green'),
|
||||
('frame', 'white', 'black'),
|
||||
('frame focus', 'light red', 'black'),
|
||||
('frame focus color', 'dark blue', 'black'),
|
||||
('frame focus top', 'dark magenta', 'black'),
|
||||
|
||||
('editfc', 'white', 'dark blue', 'bold'),
|
||||
('editbx', 'light gray', 'dark blue'),
|
||||
('editcp', 'black', 'light gray', 'standout'),
|
||||
('popupbg', 'white', 'black', 'bold'),
|
||||
]
|
||||
light = [
|
||||
('header', 'black', 'white'),
|
||||
('footer', 'black', 'white'),
|
||||
('line header', 'black', 'white', 'bold'),
|
||||
('bright', 'dark blue', 'white', ('bold', 'standout')),
|
||||
('list', 'black', 'white'),
|
||||
('list focused', 'white', 'light blue', 'bold'),
|
||||
('edit', 'black', 'white'),
|
||||
('edit focused', 'white', 'light blue', 'bold'),
|
||||
('button', 'black', 'dark cyan'),
|
||||
('button focused', 'white', 'light blue', 'bold'),
|
||||
|
||||
('reveal focus', 'black', 'dark cyan', 'standout'),
|
||||
('today focus', 'white', 'dark cyan', 'standout'),
|
||||
('today', 'black', 'light gray', 'dark cyan'),
|
||||
|
||||
('date header', '', 'white'),
|
||||
('date header focused', 'white', 'dark gray', ('bold', 'standout')),
|
||||
('date header selected', 'dark gray', 'light cyan'),
|
||||
|
||||
('dayname', 'dark gray', 'white'),
|
||||
('monthname', 'dark gray', 'white'),
|
||||
('weeknumber_right', 'dark gray', 'white'),
|
||||
('edit', 'white', 'dark blue'),
|
||||
('alert', 'white', 'dark red'),
|
||||
('mark', 'white', 'dark green'),
|
||||
('frame', 'dark gray', 'white'),
|
||||
('frame focus', 'light red', 'white'),
|
||||
('frame focus color', 'dark blue', 'white'),
|
||||
('frame focus top', 'dark magenta', 'white'),
|
||||
|
||||
('editfc', 'white', 'dark blue', 'bold'),
|
||||
('editbx', 'light gray', 'dark blue'),
|
||||
('editcp', 'black', 'light gray', 'standout'),
|
||||
('popupbg', 'white', 'black', 'bold'),
|
||||
]
|
||||
mine = [
|
||||
('header', 'black', 'white'),
|
||||
('footer', 'black', 'white'),
|
||||
('line header', 'black', 'white', 'bold'),
|
||||
('bright', 'dark blue', 'white', ('bold', 'standout')),
|
||||
('list', 'black', 'white','bold'),
|
||||
('list focused', 'white', 'light blue', 'bold'),
|
||||
('edit', 'black', 'dark blue'),
|
||||
('edit focused', 'white', 'light blue', 'bold'),
|
||||
('button', 'black', 'dark cyan'),
|
||||
('button focused', 'white', 'light blue', 'bold'),
|
||||
|
||||
('reveal focus', 'white', 'dark cyan', 'standout'),
|
||||
('today focus', 'white', 'dark cyan', 'standout'),
|
||||
('today', 'black', 'light gray', 'dark cyan'),
|
||||
|
||||
('date header focused', 'white', 'dark gray', ('bold', 'standout')),
|
||||
('date header selected', 'dark gray', 'light cyan'),
|
||||
|
||||
('dayname', 'dark gray', ''),
|
||||
('monthname', 'dark gray', ''),
|
||||
('weeknumber_right', 'dark gray', ''),
|
||||
('edit', 'white', 'dark blue'),
|
||||
('alert', 'white', 'dark red'),
|
||||
('mark', 'white', 'dark green'),
|
||||
('frame', 'dark gray', 'white'),
|
||||
('frame focus', 'light red', 'white'),
|
||||
('frame focus color', 'dark blue', 'white'),
|
||||
('frame focus top', 'dark magenta', 'white'),
|
||||
|
||||
('editfc', 'white', 'dark blue', 'bold'),
|
||||
('editbx', 'light gray', 'dark blue'),
|
||||
('editcp', 'black', 'light gray', 'standout'),
|
||||
('popupbg', 'white', 'black', 'bold'),
|
||||
]
|
@ -0,0 +1,67 @@
|
||||
# ############## #
|
||||
# khard config #
|
||||
# ############## #
|
||||
|
||||
|
||||
[addressbooks]
|
||||
[[potes]]
|
||||
path = ~/.vdirsyncer/contacts/e0b8b1bd-bd84-44c4-9ddf-19426b06103b
|
||||
[[mif]]
|
||||
path=~/.vdirsyncer/contacts/4aa55f78-e37f-4c67-869c-fdf9bb365b51
|
||||
[[admin]]
|
||||
path=~/.vdirsyncer/contacts/31bb6d1a-c8fb-47a8-ac74-6be769593140
|
||||
[[batuk]]
|
||||
path=~/.vdirsyncer/contacts/83833105-b7e2-47be-a5bb-065b3458da37
|
||||
[[sphere2]]
|
||||
path=~/.vdirsyncer/contacts/b643c914-bc15-4c13-acca-1373174051a6
|
||||
[[archive]]
|
||||
path=~/.vdirsyncer/contacts/cd87a04f-e754-40b4-8820-007eb163732d
|
||||
[[cours]]
|
||||
path=~/.vdirsyncer/contacts/e32988de-8511-419e-b560-edf51fb8b69f
|
||||
[[pro]]
|
||||
path=~/.vdirsyncer/contacts/fee16c68-2eff-4e1b-a045-30c0194291a7
|
||||
|
||||
[general]
|
||||
debug = no
|
||||
default_action = list
|
||||
# These are either strings or comma seperated lists
|
||||
editor = vim, -i, NONE
|
||||
merge_editor = vimdiff
|
||||
|
||||
[contact table]
|
||||
# display names by first or last name: first_name / last_name / formatted_name
|
||||
display = first_name
|
||||
# group by address book: yes / no
|
||||
group_by_addressbook = yes
|
||||
# reverse table ordering: yes / no
|
||||
reverse = no
|
||||
# append nicknames to name column: yes / no
|
||||
show_nicknames = no
|
||||
# show uid table column: yes / no
|
||||
show_uids = yes
|
||||
# sort by first or last name: first_name / last_name / formatted_name
|
||||
sort = last_name
|
||||
# localize dates: yes / no
|
||||
localize_dates = yes
|
||||
# set a comma separated list of preferred phone number types in descending priority
|
||||
# or nothing for non-filtered alphabetical order
|
||||
preferred_phone_number_type = pref, cell, home
|
||||
# set a comma separated list of preferred email address types in descending priority
|
||||
# or nothing for non-filtered alphabetical order
|
||||
preferred_email_address_type = pref, work, home
|
||||
|
||||
[vcard]
|
||||
# extend contacts with your own private objects
|
||||
# these objects are stored with a leading "X-" before the object name in the vcard files
|
||||
# every object label may only contain letters, digits and the - character
|
||||
# example:
|
||||
# private_objects = Jabber, Skype, Twitter
|
||||
# default: , (the empty list)
|
||||
private_objects = Jabber, Skype, Twitter
|
||||
# preferred vcard version: 3.0 / 4.0
|
||||
preferred_version = 3.0
|
||||
# Look into source vcf files to speed up search queries: yes / no
|
||||
search_in_source_files = no
|
||||
# skip unparsable vcard files: yes / no
|
||||
skip_unparsable = no
|
||||
|
@ -0,0 +1,114 @@
|
||||
# ######## #
|
||||
# lfrc #
|
||||
# ######## #
|
||||
# Based on https://raw.githubusercontent.com/gokcehan/lf/master/etc/lfrc.example
|
||||
|
||||
|
||||
## Base settings {{{
|
||||
# interpreter for shell commands (needs to be POSIX compatible)
|
||||
set shell sh
|
||||
|
||||
# set '-eu' options for shell commands
|
||||
# These options are used to have safer shell commands. Option '-e' is used to
|
||||
# exit on error and option '-u' is used to give error for unset variables.
|
||||
# Option '-f' disables pathname expansion which can be useful when $f, $fs, and
|
||||
# $fx variables contain names with '*' or '?' characters. However, this option
|
||||
# is used selectively within individual commands as it can be limiting at
|
||||
# times.
|
||||
set shellopts '-eu'
|
||||
|
||||
# set internal field separator (IFS) to "\n" for shell commands
|
||||
# This is useful to automatically split file names in $fs and $fx properly
|
||||
# since default file separator used in these variables (i.e. 'filesep' option)
|
||||
# is newline. You need to consider the values of these options and create your
|
||||
# commands accordingly.
|
||||
set ifs "\n"
|
||||
|
||||
# leave some space at the top and the bottom of the screen
|
||||
set scrolloff 10
|
||||
|
||||
# }}}
|
||||
## Commands {{{
|
||||
# define a custom 'open' command
|
||||
# This command is called when current file is not a directory. You may want to
|
||||
# use either file extensions and/or mime types here. Below uses an editor for
|
||||
# text files and a file opener for the rest.
|
||||
cmd open ${{
|
||||
case $(file --mime-type $f -b) in
|
||||
text/*) $EDITOR $fx;;
|
||||
application/gpg) $EDITOR $fx;;
|
||||
application/pdf) zathura $fx;;
|
||||
*) for f in $fx; do setsid $OPENER $f > /dev/null 2> /dev/null & done;;
|
||||
esac
|
||||
}}
|
||||
|
||||
# make sure trash folder exists
|
||||
%mkdir -p ~/.trash
|
||||
|
||||
# move current file or selected files to trash folder
|
||||
# (also see 'man mv' for backup/overwrite options)
|
||||
cmd trash %set -f; mv $fx ~/.trash
|
||||
|
||||
# extract the current file with the right command
|
||||
# (xkcd link: https://xkcd.com/1168/)
|
||||
cmd extract ${{
|
||||
set -f
|
||||
case $f in
|
||||
*.tar.bz|*.tar.bz2|*.tbz|*.tbz2) tar xjvf $f;;
|
||||
*.tar.gz|*.tgz) tar xzvf $f;;
|
||||
*.tar.xz|*.txz) tar xJvf $f;;
|
||||
*.zip) unzip $f;;
|
||||
*.rar) unrar x $f;;
|
||||
*.7z) 7z x $f;;
|
||||
esac
|
||||
}}
|
||||
|
||||
# compress current file or selected files with tar and gunzip
|
||||
cmd tar ${{
|
||||
set -f
|
||||
mkdir $1
|
||||
cp -r $fx $1
|
||||
tar czf $1.tar.gz $1
|
||||
rm -rf $1
|
||||
}}
|
||||
|
||||
# compress current file or selected files with zip
|
||||
cmd zip ${{
|
||||
set -f
|
||||
mkdir $1
|
||||
cp -r $fx $1
|
||||
zip -r $1.zip $1
|
||||
rm -rf $1
|
||||
}}
|
||||
# Print selected files (using hp-print)
|
||||
cmd print $hp-print $fx
|
||||
# }}}
|
||||
## Keyboard mappings {{{
|
||||
# use enter for shell commands
|
||||
map <enter> shell
|
||||
|
||||
# execute current file (must be executable)
|
||||
map x $$f
|
||||
map X !$f
|
||||
|
||||
# dedicated keys for file opener actions
|
||||
map o &mimeopen $f
|
||||
map O $mimeopen --ask $f
|
||||
|
||||
### Navigation
|
||||
# map gh cd $HOME # Go Home!
|
||||
map gt push :cd<space>/ # Go to...
|
||||
# Command history
|
||||
# map <c-n> cmd-history-next
|
||||
map <c-N> cmd-history-prev
|
||||
|
||||
|
||||
# Usage
|
||||
map U $du -hd1|less # Usage of a directory
|
||||
# Print
|
||||
map <c-p> print
|
||||
|
||||
### Delete
|
||||
map D trash
|
||||
map <a-D> %set -f; rm -rf $fx
|
||||
# }}}
|
@ -0,0 +1,64 @@
|
||||
# ########## #
|
||||
# profrc #
|
||||
# ########## #
|
||||
|
||||
|
||||
[ui]
|
||||
splash=true
|
||||
intype=true
|
||||
beep=false
|
||||
statuses.muc=all
|
||||
theme=mine
|
||||
history=true
|
||||
titlebar=true
|
||||
mouse=true
|
||||
flash=false
|
||||
vercheck=false
|
||||
statuses.console=all
|
||||
statuses.chat=all
|
||||
color.nick=true
|
||||
|
||||
[chatstates]
|
||||
enabled=true
|
||||
outtype=false
|
||||
gone=10
|
||||
|
||||
[notifications]
|
||||
remind=60
|
||||
invite=true
|
||||
sub=true
|
||||
message=true
|
||||
room=false
|
||||
message.current=true
|
||||
room.current=true
|
||||
typing=true
|
||||
typing.current=false
|
||||
message.text=true
|
||||
room.text=true
|
||||
|
||||
room.mention=true
|
||||
|
||||
[alias]
|
||||
q=/quit
|
||||
w=/close
|
||||
|
||||
|
||||
[logging]
|
||||
chlog=true
|
||||
grlog=true
|
||||
maxsize=1048580
|
||||
rotate=true
|
||||
shared=true
|
||||
|
||||
[otr]
|
||||
warn=true
|
||||
log=redact
|
||||
policy=manual
|
||||
|
||||
[presence]
|
||||
autoaway.mode=away
|
||||
autoaway.check=true
|
||||
autoaway.awaytime=15
|
||||
autoaway.awaymessage=Away from computer
|
||||
|
||||
# vim:ft=conf
|
@ -0,0 +1,153 @@
|
||||
[colours]
|
||||
bkgnd=default
|
||||
titlebar=blue
|
||||
titlebar.text=bold_black
|
||||
titlebar.brackets=bold_black
|
||||
titlebar.unencrypted=bold_red
|
||||
titlebar.encrypted=bold_black
|
||||
titlebar.untrusted=red
|
||||
titlebar.trusted=bold_yellow
|
||||
titlebar.online=bold_black
|
||||
titlebar.offline=bold_red
|
||||
titlebar.away=bold_white
|
||||
titlebar.chat=bold_cyan
|
||||
titlebar.dnd=bold_red
|
||||
titlebar.xa=bold_white
|
||||
statusbar=blue
|
||||
statusbar.text=bold_black
|
||||
statusbar.time=bold_black
|
||||
statusbar.brackets=bold_black
|
||||
statusbar.active=bold_black
|
||||
statusbar.new=bold_white
|
||||
statusbar.current=bold_white
|
||||
main.text=black
|
||||
main.text.me=green
|
||||
main.text.them=bold_black
|
||||
main.text.history=black
|
||||
main.splash=bold_red
|
||||
main.time=cyan
|
||||
main.trackbar=black
|
||||
input.text=blue
|
||||
subscribed=green
|
||||
unsubscribed=red
|
||||
otr.started.trusted=bold_black
|
||||
otr.started.untrusted=red
|
||||
otr.ended=blue
|
||||
otr.trusted=yellow
|
||||
otr.untrusted=red
|
||||
online=cyan
|
||||
away=white
|
||||
chat=cyan
|
||||
dnd=red
|
||||
xa=white
|
||||
offline=bold_black
|
||||
incoming=bold_yellow
|
||||
mention=bold_cyan
|
||||
trigger=blue
|
||||
typing=yellow
|
||||
gone=red
|
||||
error=red
|
||||
roominfo=yellow
|
||||
roommention=bold_yellow
|
||||
roommention.term=bold_blue
|
||||
roomtrigger=black
|
||||
roomtrigger.term=bold_black
|
||||
me=green
|
||||
them=black
|
||||
roster.header=bold_blue
|
||||
roster.chat=yellow
|
||||
roster.online=yellow
|
||||
roster.away=white
|
||||
roster.xa=white
|
||||
roster.dnd=red
|
||||
roster.offline=red
|
||||
roster.chat.active=yellow
|
||||
roster.online.active=yellow
|
||||
roster.away.active=cyan
|
||||
roster.xa.active=cyan
|
||||
roster.dnd.active=red
|
||||
roster.offline.active=red
|
||||
roster.chat.unread=bold_black
|
||||
roster.online.unread=bold_black
|
||||
roster.away.unread=bold_black
|
||||
roster.xa.unread=bold_black
|
||||
roster.dnd.unread=bold_black
|
||||
roster.offline.unread=bold_black
|
||||
roster.room=magenta
|
||||
roster.room.unread=bold_magenta
|
||||
roster.room.trigger=bold_blue
|
||||
roster.room.mention=bold_magenta
|
||||
occupants.header=bold_yellow
|
||||
receipt.sent=bold_black
|
||||
untrusted=black
|
||||
cmd.wins.unread=bold_red
|
||||
|
||||
[ui]
|
||||
beep=false
|
||||
flash=false
|
||||
splash=true
|
||||
wrap=true
|
||||
time.console=%H:%M:%S
|
||||
time.chat=%d/%m/%y %H:%M:%S
|
||||
time.muc=%d/%m/%y %H:%M:%S
|
||||
time.config=off
|
||||
time.private=%d/%m/%y %H:%M:%S
|
||||
time.xmlconsole=%H:%M:%S
|
||||
time.lastactivity=%d/%m/%y %H:%M:%S
|
||||
time.statusbar=%H:%M:%S
|
||||
privileges=true
|
||||
presence=true
|
||||
intype=true
|
||||
enc.warn=true
|
||||
resource.title=true
|
||||
resource.message=true
|
||||
statuses.console=none
|
||||
statuses.chat=none
|
||||
statuses.muc=none
|
||||
roster=true
|
||||
roster.offline=false
|
||||
roster.empty=false
|
||||
roster.by=none
|
||||
roster.order=presence
|
||||
roster.unread=after
|
||||
roster.count=false
|
||||
roster.priority=false
|
||||
roster.size=25
|
||||
roster.wrap=true
|
||||
roster.header.char=+
|
||||
roster.contact.char=-
|
||||
roster.contact.indent=1
|
||||
roster.resource=true
|
||||
roster.resource.char=/
|
||||
roster.resource.indent=1
|
||||
roster.resource.join=true
|
||||
roster.presence=true
|
||||
roster.presence.indent=-1
|
||||
roster.status=true
|
||||
roster.contacts=true
|
||||
roster.unsubscribed=true
|
||||
roster.rooms=true
|
||||
roster.rooms.order=name
|
||||
roster.rooms.unread=after
|
||||
roster.rooms.pos=last
|
||||
roster.rooms.by=none
|
||||
roster.rooms.char=/
|
||||
roster.rooms.private.char=/
|
||||
roster.private=room
|
||||
roster.private.char=/
|
||||
occupants=true
|
||||
occupants.size=15
|
||||
occupants.char=-
|
||||
occupants.jid=false
|
||||
occupants.wrap=true
|
||||
occupants.indent=1
|
||||
occupants.header.char=-
|
||||
wins.autotidy=true
|
||||
otr.char=@
|
||||
pgp.char=%
|
||||
omemo.char=*
|
||||
console.muc=first
|
||||
console.chat=all
|
||||
console.private=all
|
||||
inputwin.position=4
|
||||
correction.char=+
|
@ -0,0 +1,100 @@
|
||||
#╔══════════════════╗
|
||||
#║ Rofi pass config ║
|
||||
#╚══════════════════╝
|
||||
|
||||
|
||||
# rofi command. Make sure to have "$@" as last argument
|
||||
_rofi () {
|
||||
rofi -i -no-auto-select "$@"
|
||||
}
|
||||
|
||||
# default command to generate passwords
|
||||
_pwgen () {
|
||||
pwgen -y "$@"
|
||||
}
|
||||
|
||||
# image viewer to display qrcode of selected entry
|
||||
# qrencode is needed to generate the image and a viewer
|
||||
# that can read from pipes. Known viewers to work are feh and display
|
||||
_image_viewer () {
|
||||
feh -
|
||||
# display
|
||||
}
|
||||
|
||||
# xdotool needs the keyboard layout to be set using setxkbmap
|
||||
# You can do this in your autostart scripts (e.g. xinitrc)
|
||||
|
||||
# If for some reason, you cannot do this, you can set the command here.
|
||||
# and set fix_layout to true
|
||||
fix_layout=false
|
||||
|
||||
layout_cmd () {
|
||||
setxkbmap us
|
||||
}
|
||||
|
||||
# fields to be used
|
||||
URL_field='URL'
|
||||
USERNAME_field='LOGIN'
|
||||
AUTOTYPE_field='autotype'
|
||||
|
||||
# delay to be used for :delay keyword
|
||||
delay=1
|
||||
|
||||
# rofi-pass needs to close itself before it can type passwords. Set delay here.
|
||||
wait=0.2
|
||||
|
||||
# delay between keypresses when typing (in ms)
|
||||
xdotool_delay=12
|
||||
|
||||
## Programs to be used
|
||||
# Editor
|
||||
EDITOR='gvim -f'
|
||||
|
||||
# Browser
|
||||
BROWSER='xdg-open'
|
||||
|
||||
## Misc settings
|
||||
|
||||
default_do='menu' # menu, autotype, copyPass, typeUser, typePass, copyUser, copyUrl, viewEntry, typeMenu, actionMenu, copyMenu, openUrl
|
||||
auto_enter='false'
|
||||
notify='false'
|
||||
default_autotype='user :tab pass'
|
||||
|
||||
# color of the help messages
|
||||
# leave empty for autodetection
|
||||
help_color="#4872FF"
|
||||
|
||||
# Clipboard settings
|
||||
# Possible options: primary, clipboard, both
|
||||
clip=primary
|
||||
|
||||
# Seconds before clearing pass from clipboard
|
||||
clip_clear=45
|
||||
|
||||
## Options for generating new password entries
|
||||
|
||||
# open new password entries in editor
|
||||
edit_new_pass="true"
|
||||
|
||||
# default_user is also used for password files that have no user field.
|
||||
#default_user="${ROFI_PASS_DEFAULT_USER-$(whoami)}"
|
||||
#default_user=":filename"
|
||||
#password_length=12
|
||||
|
||||
# Custom Keybindings
|
||||
autotype="Alt+1"
|
||||
type_user="Alt+2"
|
||||
type_pass="Alt+3"
|
||||
open_url="Alt+4"
|
||||
copy_name="Alt+u"
|
||||
copy_url="Alt+l"
|
||||
copy_pass="Alt+p"
|
||||
show="Alt+o"
|
||||
copy_entry="Alt+2"
|
||||
type_entry="Alt+1"
|
||||
copy_menu="Alt+c"
|
||||
action_menu="Alt+a"
|
||||
type_menu="Alt+t"
|
||||
help="Alt+h"
|
||||
switch="Alt+x"
|
||||
insert_pass="Alt+n"
|
@ -0,0 +1,126 @@
|
||||
[options]
|
||||
allow_bold = true
|
||||
#audible_bell = false
|
||||
bold_is_bright = true
|
||||
#cell_height_scale = 1.0
|
||||
#cell_width_scale = 1.0
|
||||
clickable_url = true
|
||||
dynamic_title = true
|
||||
font = Symbola 9
|
||||
font = DejaVu Sans Mono 9
|
||||
fullscreen = true
|
||||
#icon_name = terminal
|
||||
#mouse_autohide = false
|
||||
#scroll_on_output = false
|
||||
#scroll_on_keystroke = true
|
||||
# Length of the scrollback buffer, 0 disabled the scrollback buffer
|
||||
# and setting it to a negative value means "infinite scrollback"
|
||||
scrollback_lines = 10000
|
||||
#search_wrap = true
|
||||
#urgent_on_bell = true
|
||||
#hyperlinks = false
|
||||
|
||||
# $BROWSER is used by default if set, with xdg-open as a fallback
|
||||
browser = qutebrowser
|
||||
|
||||
# "system", "on" or "off"
|
||||
#cursor_blink = system
|
||||
|
||||
# "block", "underline" or "ibeam"
|
||||
#cursor_shape = block
|
||||
|
||||
# Hide links that are no longer valid in url select overlay mode
|
||||
#filter_unmatched_urls = true
|
||||
|
||||
# Emit escape sequences for extra modified keys
|
||||
#modify_other_keys = false
|
||||
|
||||
# set size hints for the window
|
||||
#size_hints = false
|
||||
|
||||
# "off", "left" or "right"
|
||||
#scrollbar = off
|
||||
|
||||
[colors]
|
||||
# If both of these are unset, cursor falls back to the foreground color,
|
||||
# and cursor_foreground falls back to the background color.
|
||||
#cursor = #dcdccc
|
||||
#cursor_foreground = #dcdccc
|
||||
|
||||
#foreground = #dcdccc
|
||||
#foreground_bold = #ffffff
|
||||
#background = #3f3f3f
|
||||
|
||||
foreground = #565e65
|
||||
foreground_bold = #565e65
|
||||
cursor = #565e65
|
||||
|
||||
# 20% background transparency (requires a compositor)
|
||||
background = rgba(63, 63, 63, 0.)
|
||||
|
||||
# If unset, will reverse foreground and background
|
||||
highlight = #2f2f2f
|
||||
|
||||
# Colors from color0 to color254 can be set
|
||||
#color0 = #3f3f3f
|
||||
#color1 = #705050
|
||||
#color2 = #60b48a
|
||||
#color3 = #dfaf8f
|
||||
#color4 = #506070
|
||||
#color5 = #dc8cc3
|
||||
#color6 = #8cd0d3
|
||||
#color7 = #dcdccc
|
||||
#color8 = #709080
|
||||
#color9 = #dca3a3
|
||||
#color10 = #c3bf9f
|
||||
#color11 = #f0dfaf
|
||||
#color12 = #94bff3
|
||||
#color13 = #ec93d3
|
||||
#color14 = #93e0e3
|
||||
#color15 = #ffffff
|
||||
|
||||
|
||||
# black
|
||||
color0 = #222425
|
||||
color8 = #747c84
|
||||
|
||||
# red
|
||||
color1 = #eca55c
|
||||
color9 = #ed723b
|
||||
|
||||
# green
|
||||
color2 = #75daa6
|
||||
color10 = #95ac41
|
||||
|
||||
# yellow
|
||||
color3 = #f9ca62
|
||||
color11 = #dfe96f
|
||||
|
||||
# blue
|
||||
color4 = #ae95c7
|
||||
color12 = #ae95c7
|
||||
|
||||
# magenta
|
||||
color5 = #c795ae
|
||||
color13 = #c795ae
|
||||
|
||||
# cyan
|
||||
color6 = #95aec7
|
||||
color14 = #95aec7
|
||||
|
||||
# white
|
||||
color7 = #c8ced5
|
||||
color15 = #cedbe8
|
||||
|
||||
[hints]
|
||||
#font = Monospace 12
|
||||
#foreground = #dcdccc
|
||||
#background = #3f3f3f
|
||||
#active_foreground = #e68080
|
||||
#active_background = #3f3f3f
|
||||
#padding = 2
|
||||
#border = #3f3f3f
|
||||
#border_width = 0.5
|
||||
#roundness = 2.0
|
||||
|
||||
# vim: ft=dosini cms=#%s
|
@ -0,0 +1,7 @@
|
||||
[main]
|
||||
# A glob expression which matches all directories relevant.
|
||||
path = ~/.vdirsyncer/calendars/*
|
||||
date_format = %Y-%m-%d
|
||||
time_format = %H:%M
|
||||
default_list = Personal
|
||||
default_due = 48
|
@ -0,0 +1,48 @@
|
||||
# #################### #
|
||||
# vdirsyncer config #
|
||||
# #################### #
|
||||
|
||||
# General vdirsyncer config {{{
|
||||
[general]
|
||||
status_path = "~/.vdirsyncer/status"
|
||||
# }}}
|
||||
# Define storages here {{{
|
||||
[storage remote_contacts]
|
||||
type = "carddav"
|
||||
url = "https://dav.moqueur.chat/dav.php"
|
||||
auth = "digest"
|
||||
username = "etienne"
|
||||
password.fetch = ["command", "pass", "Yuno/DAV"]
|
||||
|
||||
[storage remote_calendars]
|
||||
type = "caldav"
|
||||
url = "https://dav.moqueur.chat/dav.php"
|
||||
auth = "digest"
|
||||
username = "etienne"
|
||||
password.fetch = ["command", "pass", "Yuno/DAV"]
|
||||
|
||||
[storage local_contacts]
|
||||
type = "filesystem"
|
||||
path = "~/.vdirsyncer/contacts/"
|
||||
fileext = ".vcf"
|
||||
|
||||
[storage local_calendars]
|
||||
type = "filesystem"
|
||||
path = "~/.vdirsyncer/calendars/"
|
||||
fileext = ".ics"
|
||||
# }}}
|
||||
# Define pairings here {{{
|
||||
[pair contacts]
|
||||
a = "local_contacts"
|
||||
b = "remote_contacts"
|
||||
collections = ["from a", "from b"]
|
||||
conflict_resolution = "b wins"
|
||||
metadata = ["displayname"]
|
||||
|
||||
[pair calendars]
|
||||
a = "local_calendars"
|
||||
b = "remote_calendars"
|
||||
collections = ["from a","from b"]
|
||||
conflict_resolution = "b wins"
|
||||
metadata = ["color","displayname"]
|
||||
# }}}
|
@ -0,0 +1,12 @@
|
||||
# ############### #
|
||||
# .mutt/mailcap #
|
||||
# ############### #
|
||||
|
||||
# How to open stuff
|
||||
|
||||
# HTML mails
|
||||
text/html; lynx --display_charset=utf8 -dump %s; nametemplate=%s.html; copiousoutput;
|
||||
# Images
|
||||
image/*; feh %s
|
||||
# PDF
|
||||
application/pdf; zathura %s
|
@ -0,0 +1,171 @@
|
||||
#!/bin/bash
|
||||
|
||||
### A simple script I use to add a mailbox to mutt
|
||||
## Inform the script about the specifics of your mailbox (mail, user name, password, ...)
|
||||
## The script will then write:
|
||||
## * .mbsyncrc to configure the imap part
|
||||
## * .msmtprc to configure the smtp part
|
||||
## * .mutt/accounts, .mutt/$account and .mutt/sidebar-accounts for the mutt part
|
||||
##
|
||||
## This provides a basic config, which may have to be modified afterwards for specific uses
|
||||
|
||||
|
||||
echo
|
||||
echo "-----------------------"
|
||||
echo "----- ADD MAILBOX -----"
|
||||
echo "-----------------------"
|
||||
echo
|
||||
|
||||
### Get info
|
||||
|
||||
read -p "account name: " account
|
||||
read -p "mail address: " mail
|
||||
# grep the domain name
|
||||
domain=$(echo $mail | grep -o "@[[:alnum:][:graph:]]*" | sed -e 's/@//g')
|
||||
read -p "user name (defaults as $mail): " user
|
||||
if [ -z $user ];then user=$mail;fi
|
||||
read -p "full name: " name
|
||||
read -p "signature (defaults to $name): " sign
|
||||
if [ -z $sign ];then sign=$name;fi
|
||||
read -p "imap server (defaults to imap.$domain): " imap
|
||||
if [ -z $imap ];then imap="imap.$domain";fi
|
||||
read -p "smtp server (defaults to smtp.$domain): " smtp
|
||||
if [ -z $smtp ];then smtp="smtp.$domain";fi
|
||||
read -p "smtp port (defaults to 587): " sport
|
||||
if [ -z $sport ];then sport=587;fi
|
||||
read -p "Use plaintext pass? [y/N]: " choice
|
||||
if [ -z $choice ] || [ $choice = "N" ] || [ $choice = "n" ];then
|
||||
read -p "password evaluation command: " password
|
||||
else
|
||||
read -p "Password: " password
|
||||
fi
|
||||
|
||||
|
||||
### Write files
|
||||
|
||||
## .mbsyncrc
|
||||
outfile=$HOME/.mbsyncrc
|
||||
if [ -z $choice ] || [ $choice = "n" ] || [ $choice = "N" ];then
|
||||
passcmd=PassCmd
|
||||
else
|
||||
passcmd=Password
|
||||
fi
|
||||
|
||||
if [ ! -f $outfile ];then
|
||||
echo "# ########### #
|
||||
# .mbsyncrc #
|
||||
# ########### #
|
||||
|
||||
# from https://gist.github.com/chandraratnam/f00ab7d4a5298830f692021964fdb99f
|
||||
|
||||
Create Both
|
||||
Expunge Both
|
||||
SyncState *
|
||||
">>$outfile
|
||||
fi
|
||||
|
||||
echo "## $account {{{
|
||||
IMAPAccount $account
|
||||
# Account info
|
||||
Host $imap
|
||||
User $user
|
||||
$passcmd \"$password\"
|
||||
# Use SSL
|
||||
SSLType IMAPS
|
||||
CertificateFile /etc/ssl/certs/ca-certificates.crt
|
||||
AuthMechs LOGIN
|
||||
|
||||
IMAPStore $account-remote
|
||||
Account $account
|
||||
|
||||
MaildirStore $account-local
|
||||
Subfolders Verbatim
|
||||
Path ~/.mail/$account/
|
||||
Inbox ~/.mail/$account/Inbox
|
||||
|
||||
Channel $account
|
||||
Master :$account-remote:
|
||||
Slave :$account-local:
|
||||
Patterns "INBOX" "Sent" "Trash" "Drafts"
|
||||
# }}}">>$outfile
|
||||
|
||||
mkdir $HOME/.mail/$account
|
||||
|
||||
|
||||
## .msmtprc
|
||||
outfile=$HOME/.msmtprc
|
||||
if [ -z $choice ] || [ $choice = "n" ] || [ $choice = "N" ];then
|
||||
passcmd=passwordeval
|
||||
else
|
||||
passcmd=password
|
||||
fi
|
||||
|
||||
if [ ! -f $outfile ];then
|
||||
echo "# ########## #
|
||||
# .msmtprc #
|
||||
# ########## #
|
||||
|
||||
|
||||
## General config {{{
|
||||
|
||||
# Set default values for all following accounts.
|
||||
defaults
|
||||
auth on
|
||||
tls on
|
||||
tls_trust_file /etc/ssl/certs/ca-certificates.crt
|
||||
logfile ~/.msmtp.log
|
||||
# }}}
|
||||
">>$outfile
|
||||
fi
|
||||
|
||||
echo "
|
||||
## $account {{{
|
||||
|
||||
account $account
|
||||
host $smtp
|
||||
port $sport
|
||||
from $mail
|
||||
user $user
|
||||
$passcmd \"$password\"
|
||||
# }}}">>$outfile
|
||||
|
||||
|
||||
## .mutt/accounts
|
||||
outfile=$HOME/.mutt/accounts
|
||||
if [ ! -f $outfile ];then
|
||||
echo "### Accounts configuration"
|
||||
fi
|
||||
|
||||
echo "## $account {{{
|
||||
source "~/.mutt/$account"
|
||||
folder-hook \$folder 'source ~/.mutt/$account'
|
||||
# Change inbox (and source)
|
||||
macro index,pager <f2> '<enter-command>source ~/.mutt/$account<enter><change-folder>!<enter>'
|
||||
# }}}">>$outfile
|
||||
|
||||
## .mutt/$account
|
||||
# It is assumed that .mutt/$account does not exist yet
|
||||
outfile=$HOME/.mutt/$account
|
||||
echo "color status yellow default
|
||||
## Receive options.
|
||||
set folder = "~/.mail/$account"
|
||||
set spoolfile = +Inbox
|
||||
set postponed = +Drafts
|
||||
set record = +Sent
|
||||
|
||||
## Send options.
|
||||
set realname='$name'
|
||||
set from = \"$mail\"
|
||||
set sendmail = \"/usr/bin/msmtp -a $account\"
|
||||
set sendmail_wait = 0 # Wait for mail to be sent before going back to mail list
|
||||
unset record # Do not record sent mails (done server side)
|
||||
set signature=\"$name\"">>$outfile
|
||||
|
||||
## .mutt/sidebar-accounts
|
||||
outfile=$HOME/.mutt/sidebar-accounts
|
||||
if [ ! -f $outfile ];then
|
||||
echo "### Add the relevant boxes to the sidebar
|
||||
# vim: ft=muttrc"
|
||||
fi
|
||||
|
||||
echo "mailboxes -label $account '~/.mail/$account/Inbox'">>$outfile
|
@ -0,0 +1,14 @@
|
||||
color status yellow default
|
||||
## Receive options.
|
||||
set folder = "~/.mail/model"
|
||||
set spoolfile = +Inbox
|
||||
set postponed = +Drafts
|
||||
set record = +Sent
|
||||
|
||||
## Send options.
|
||||
set realname='First Last'
|
||||
set from = "user@domain.tld"
|
||||
set sendmail = "/usr/bin/msmtp -a model"
|
||||
set sendmail_wait = 0 # Wait for mail to be sent before going back to mail list
|
||||
unset record # Do not record sent mails (done server side)
|
||||
set signature="Sign"
|
@ -0,0 +1,89 @@
|
||||
# ########### #
|
||||
# .muttrc #
|
||||
# ########### #
|
||||
|
||||
|
||||
## General options {{{
|
||||
set header_cache = "~/.cache/mutt"
|
||||
set mail_check = 60
|
||||
set mbox_type=Maildir
|
||||
set editor=vim
|
||||
auto_view text/html
|
||||
# }}}
|
||||
## Shortcuts {{{
|
||||
macro index S "!mbsync -a^M" "Update through mbsync"
|
||||
bind index <space> collapse-thread
|
||||
|
||||
# Scan and open URLs
|
||||
macro pager \cu |urlscan<enter>
|
||||
# Add address to khard (see address book)
|
||||
macro index,pager A "<pipe-message>khard add-email<return>" "add the sender email address to khard"
|
||||
# }}}
|
||||
## Appearance {{{
|
||||
set date_format = "%d/%m (%H:%M)" # Date as day/month
|
||||
set index_format = "[%Z] %D %-20.20F %s" # Display [status] date Who What
|
||||
set sort = threads # Nice tree view for threads
|
||||
set sort_aux = reverse-last-date-received # New mail on top
|
||||
unset markers # Remove those '+' signs at line breaks
|
||||
# }}}
|
||||
## Colors {{{
|
||||
# Palette for use with the Linux console. Black background.
|
||||
#color hdrdefault blue default
|
||||
color quoted blue default
|
||||
color signature blue default
|
||||
color attachment brightyellow default
|
||||
color prompt brightmagenta default
|
||||
color message brightred default
|
||||
color error brightred default
|
||||
color indicator black white
|
||||
color status brightgreen blue
|
||||
color tree default default
|
||||
color normal default default
|
||||
color markers red default
|
||||
color search white default
|
||||
color tilde brightmagenta default
|
||||
# Colors by tags:
|
||||
# all ~A
|
||||
# del ~D
|
||||
# flag ~F
|
||||
# new ~N
|
||||
# old ~O
|
||||
# repl ~Q
|
||||
# read ~R
|
||||
# tag ~T
|
||||
# unrea ~U
|
||||
color index blue default ~F
|
||||
color index brightcyan default "~N|~O"
|
||||
color index green default "~Q"
|
||||
color body brightwhite default '\*+[^*]+\*+'
|
||||
color body brightgreen default '_+[^_]+_+'
|
||||
|
||||
# }}}
|
||||