dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit d9550b50f066bd9ffe629868bf5be2a2b5dc7492
parent 1bf4a6fc46a09b15d7998e832f5093d90f0a60b3
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Tue,  2 Apr 2019 20:09:09 +0200

Do not nohup surf, update colors

Diffstat:
M.Xresources | 4++--
Mbin/surf-open.sh | 4++--
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.Xresources b/.Xresources @@ -6,8 +6,8 @@ Xcursor.size: 16 ! see https://ciembor.github.io/4bit !TomorrowNight -*.foreground: #4d4d4c -*.background: #ffffff +*.foreground: #c5c8c6 +*.background: #1d1f21 /* black */ *color0: #434944 diff --git a/bin/surf-open.sh b/bin/surf-open.sh @@ -10,12 +10,12 @@ uri="" runtabbed() { echo "starting tabbed" - nohup tabbed -dn tabbed-surf -r 2 >"$xidfile" 2>/dev/null & + tabbed -dn tabbed-surf -r 2 >"$xidfile" 2>/dev/null & disown sleep 0.1 } opensurf() { - nohup $prefix surf -e "$xid" "$uri" >/dev/null 2>&1 & + $prefix surf -e "$xid" "$uri" >/dev/null 2>&1 & disown }