summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.config/env3
-rw-r--r--.config/zsh/alias.zsh1
-rwxr-xr-x.local/bin/fetch_mail2
3 files changed, 5 insertions, 1 deletions
diff --git a/.config/env b/.config/env
index f0a228c..68139ed 100644
--- a/.config/env
+++ b/.config/env
@@ -115,6 +115,9 @@ export NNN_PREVIEWVIDEO='tct'
export NNN_ICONLOOKUP=0
export NNN_PLUG='t:joe_fzfcd;p:-preview-tui;s:-!gdu -s;f:-fzopen;c:-joe_clipper;d:-joe_dragdrop;q:-joe_cmusq'
export RUSTFLAGS='-L /usr/local/lib'
+export SFEED_URL_FILE="$XDG_DATA_HOME/sfeed/readfile"
+export SFEED_PLUMBER="linkview"
+export SFEED_PLUMBER_INTERACTIVE="1"
export WEBKIT_DISABLE_COMPOSITING_MODE=1
export WWW_HOME='https://start.duckduckgo.com/'
export YTFZF_HIST='0'
diff --git a/.config/zsh/alias.zsh b/.config/zsh/alias.zsh
index 6e8bfea..1fbb0c8 100644
--- a/.config/zsh/alias.zsh
+++ b/.config/zsh/alias.zsh
@@ -61,6 +61,7 @@ alias \
irc='TERM=st-16color catgirl' \
free='freecolor' \
n='nnn' \
+ sf='sfeed_curses $XDG_DATA_HOME/sfeed/feeds/*' \
gt='gpg-tui' \
lg='lazygit' \
tf='terraform' \
diff --git a/.local/bin/fetch_mail b/.local/bin/fetch_mail
index 743d027..eaee5fb 100755
--- a/.local/bin/fetch_mail
+++ b/.local/bin/fetch_mail
@@ -35,7 +35,6 @@ sub get_new_mail
my ($acc) = @_;
my $ret;
- system('killall mbsync >/dev/null 2>&1');
$ret = system('mbsync', $acc);
if ($ret != 0) {
notify(" $acc: failed to sync mails");
@@ -109,6 +108,7 @@ sub fetch_mail
if ($ret != 0) {
return;
}
+ system('killall mbsync >/dev/null 2>&1');
my @accs = get_all_accounts();
for (@accs) {
my $pid = fork();