diff options
Diffstat (limited to '.functions')
-rw-r--r-- | .functions | 17 |
1 files changed, 12 insertions, 5 deletions
@@ -1,3 +1,5 @@ +#!/usr/bin/env bash + fco () { local tags branches target branches=$( @@ -15,11 +17,6 @@ fco () { git checkout $(awk '{print $2}' <<<$target) } -fjrnl () { - title=$(jrnl --short | fzf --tac --no-sort) \ - && jrnl -on $(echo $title | cut -c 1-16) $1 -} - fs () { local session session=$(tmux list-sessions -F "#{session_name}" \ @@ -34,3 +31,13 @@ tm() { fi session=$(tmux list-sessions -F "#{session_name}" 2>/dev/null | fzf --exit-0) && tmux $change -t "$session" || echo "No sessions found." } + +open () { + if [ -f /usr/bin/xdg-open ]; then + nohup xdg-open "$*" > /dev/null 2>&1 & + elif [ -f /usr/bin/open ]; then + /usr/bin/open "$*" + else + echo "No usable program is found" + fi +} |