cleaning up old dotfiles
This commit is contained in:
parent
d266bb3942
commit
9d088c1000
5 changed files with 0 additions and 165 deletions
|
@ -1,94 +0,0 @@
|
||||||
[Background]
|
|
||||||
Color=40,42,54
|
|
||||||
|
|
||||||
[BackgroundFaint]
|
|
||||||
Color=40,42,54
|
|
||||||
|
|
||||||
[BackgroundIntense]
|
|
||||||
Color=40,42,54
|
|
||||||
|
|
||||||
[Color0]
|
|
||||||
Color=189,147,249
|
|
||||||
|
|
||||||
[Color0Faint]
|
|
||||||
Color=189,147,249
|
|
||||||
|
|
||||||
[Color0Intense]
|
|
||||||
Color=189,147,249
|
|
||||||
|
|
||||||
[Color1]
|
|
||||||
Color=255,85,85
|
|
||||||
|
|
||||||
[Color1Faint]
|
|
||||||
Color=255,85,85
|
|
||||||
|
|
||||||
[Color1Intense]
|
|
||||||
Color=255,85,85
|
|
||||||
|
|
||||||
[Color2]
|
|
||||||
Color=80,250,123
|
|
||||||
|
|
||||||
[Color2Faint]
|
|
||||||
Color=80,250,123
|
|
||||||
|
|
||||||
[Color2Intense]
|
|
||||||
Color=80,250,123
|
|
||||||
|
|
||||||
[Color3]
|
|
||||||
Color=255,121,198
|
|
||||||
|
|
||||||
[Color3Faint]
|
|
||||||
Color=255,121,198
|
|
||||||
|
|
||||||
[Color3Intense]
|
|
||||||
Color=255,121,198
|
|
||||||
|
|
||||||
[Color4]
|
|
||||||
Color=139,233,253
|
|
||||||
|
|
||||||
[Color4Faint]
|
|
||||||
Color=139,233,253
|
|
||||||
|
|
||||||
[Color4Intense]
|
|
||||||
Color=139,233,253
|
|
||||||
|
|
||||||
[Color5]
|
|
||||||
Color=241,250,140
|
|
||||||
|
|
||||||
[Color5Faint]
|
|
||||||
Color=241,250,140
|
|
||||||
|
|
||||||
[Color5Intense]
|
|
||||||
Color=241,250,140
|
|
||||||
|
|
||||||
[Color6]
|
|
||||||
Color=98,114,164
|
|
||||||
|
|
||||||
[Color6Faint]
|
|
||||||
Color=98,114,164
|
|
||||||
|
|
||||||
[Color6Intense]
|
|
||||||
Color=98,114,164
|
|
||||||
|
|
||||||
[Color7]
|
|
||||||
Color=68,71,90
|
|
||||||
|
|
||||||
[Color7Faint]
|
|
||||||
Color=68,71,90
|
|
||||||
|
|
||||||
[Color7Intense]
|
|
||||||
Color=68,71,90
|
|
||||||
|
|
||||||
[Foreground]
|
|
||||||
Color=248,248,242
|
|
||||||
|
|
||||||
[ForegroundFaint]
|
|
||||||
Color=248,248,242
|
|
||||||
|
|
||||||
[ForegroundIntense]
|
|
||||||
Color=248,248,242
|
|
||||||
|
|
||||||
[General]
|
|
||||||
Description=Dracula
|
|
||||||
Opacity=1
|
|
||||||
Wallpaper=
|
|
|
@ -1,5 +0,0 @@
|
||||||
#! /usr/bin/env python2
|
|
||||||
from subprocess import check_output
|
|
||||||
|
|
||||||
def get_pass():
|
|
||||||
return check_output("~/bin/pw.sh IMAP_PASSWORD", shell=True).strip("\n")
|
|
|
@ -1,37 +0,0 @@
|
||||||
[general]
|
|
||||||
accounts = Personal
|
|
||||||
ui = basic
|
|
||||||
#ui = blinkenlights
|
|
||||||
maxsynaccounts = 1
|
|
||||||
pythonfile = ~/.offlineimap.py
|
|
||||||
|
|
||||||
[mbnames]
|
|
||||||
enabled = yes
|
|
||||||
filename = ~/.mutt/mailboxes
|
|
||||||
header = "mailboxes "
|
|
||||||
peritem = "+%(foldername)s"
|
|
||||||
sep = " "
|
|
||||||
footer = "\n"
|
|
||||||
|
|
||||||
[Account Personal]
|
|
||||||
localrepository = Local
|
|
||||||
remoterepository = Remote
|
|
||||||
postsynchook = notmuch new
|
|
||||||
# autorefresh = 1
|
|
||||||
# quick = 10
|
|
||||||
|
|
||||||
[Repository Local]
|
|
||||||
|
|
||||||
type = Maildir
|
|
||||||
localfolders = ~/.maildir
|
|
||||||
sep = .
|
|
||||||
restoreatime = no
|
|
||||||
|
|
||||||
[Repository Remote]
|
|
||||||
type = IMAP
|
|
||||||
remotehost = imap.fastmail.com
|
|
||||||
remoteuser = andrew@amdavidson.com
|
|
||||||
remotepasseval = get_pass()
|
|
||||||
maxconnections = 5
|
|
||||||
keepalive = 60
|
|
||||||
# holdconnectionopen = yes
|
|
|
@ -1,24 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [[ "$OSTYPE" == "linux-gnu" ]]; then
|
|
||||||
echo "OS is linux"
|
|
||||||
DISTRO=$(. /etc/os-release; echo $NAME)
|
|
||||||
if [[ "$DISTRO" == "Fedora" ]]; then
|
|
||||||
echo "Distro is Fedora"
|
|
||||||
/usr/bin/offlineimap -k Repository_Remote:sslcacertfile=/etc/ssl/certs/ca-bundle.crt -c $HOME/.offlineimaprc_fastmail
|
|
||||||
elif [[ "$DISTRO" == "Ubuntu" ]]; then
|
|
||||||
echo "Distro is Ubuntu"
|
|
||||||
/usr/bin/offlineimap -k Repository_Remote:sslcacertfile=/etc/ssl/certs/ca-certificates.crt -c $HOME/.offlineimaprc_fastmail
|
|
||||||
elif [[ "$DISTRO" == "Debian GNU/Linux" ]]; then
|
|
||||||
echo "Distro is Debian"
|
|
||||||
/usr/bin/offlineimap -k Repository_Remote:sslcacertfile=/etc/ssl/certs/ca-certificates.crt -c $HOME/.offlineimaprc_fastmail
|
|
||||||
else
|
|
||||||
echo "Distro is unknown"
|
|
||||||
/usr/bin/offlineimap -k Repository_Remote:sslcacertfile=/etc/ssl/certs/ca-certificates.crt -c $HOME/.offlineimaprc_fastmail
|
|
||||||
fi
|
|
||||||
elif [[ "$OSTYPE" == "darwin"* ]]; then
|
|
||||||
echo "OS is darwin"
|
|
||||||
/usr/local/bin/offlineimap -k Repository_Remote:sslcacertfile=/usr/local/etc/openssl/cert.pem -c $HOME/.offlineimaprc_fastmail
|
|
||||||
else
|
|
||||||
echo "Offlineimap not configured to access Fastmail on $OSTYPE"
|
|
||||||
fi
|
|
|
@ -1,5 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
source ~/.env
|
|
||||||
|
|
||||||
echo ${!1}
|
|
Loading…
Reference in a new issue