commit 502fd36bc03b78103a9c47d2da2b249ee772f268
parent 0359ffe1ed8b2abc951e665f68a618132c515269
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Mon, 29 Apr 2019 13:57:55 +0200
Hide tmux status by default, update colors and nnn
Diffstat:
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/.Xresources b/.Xresources
@@ -5,8 +5,8 @@ Xcursor.size: 16
! terminal colors ------------------------------------------------------------
! see https://ciembor.github.io/4bit
-*.foreground: #c5c8c6
-*.background: #1d1f21
+*.foreground: #4d4d4c
+*.background: #ffffff
/* black */
*color0: #434944
diff --git a/.config/nnn/plugins/open-images b/.config/nnn/plugins/open-images
@@ -1,2 +1,2 @@
-#!/usr/bin/env sh
+#!/bin/sh
sxiv -q -t ./* >/dev/null 2>&1 &
diff --git a/.tmux.conf b/.tmux.conf
@@ -42,16 +42,16 @@ set -g message-command-style fg=white # appearance of status message cmds
set -g status-left ""
# Status bar visibility
-set -g status on
+set -g status off
bind -r -n M-t set status on
bind -r -n M-T set status off
bind t set status on
bind T set status off
# Right section of status bar
-#if-shell 'uname | grep -qi Darwin' "set -g status-right \"#[fg=#81a2be]#(/usr/local/bin/mpc | head -n 1 | sed 's/volume.*$//') #[fg=cyan]#(~/bin/battery-osx) #(~/bin/mailstatus.sh) #[fg=yellow]#(uptime|sed 's/.* //') #[fg=#666666]%F #[fg=#bababa]%R\""
+if-shell 'uname | grep -qi Darwin' "set -g status-right \"#[fg=#81a2be]#(/usr/local/bin/mpc | head -n 1 | sed 's/volume.*$//') #[fg=cyan]#(~/bin/battery-osx) #(~/bin/mailstatus.sh) #[fg=yellow]#(uptime|sed 's/.* //') #[fg=#666666]%F #[fg=#bababa]%R\""
-#if-shell 'uname | grep -qi Linux' "set -g status-right \"#[fg=cyan]#(~/bin/battery-linux) #(~/bin/mailstatus.sh) #[fg=yellow]#(cat /proc/loadavg|awk '{print $1;}') #[fg=#666666]%F #[fg=#bababa]%R\""
+if-shell 'uname | grep -qi Linux' "set -g status-right \"#[fg=cyan]#(~/bin/battery-linux) #(~/bin/mailstatus.sh) #[fg=yellow]#(cat /proc/loadavg|awk '{print $1;}') #[fg=#666666]%F #[fg=#bababa]%R\""
# Scaling of status-bar sections
set -g status-right-length 40