mirror of https://tildegit.org/ben/dotfiles
fix some formatting in my fishfuncs
parent
f5bb310554
commit
3c8cac9765
|
@ -1,4 +0,0 @@
|
||||||
function 0x0
|
|
||||||
curl -F"file=@"$argv[1] https://0x0.tilde.team
|
|
||||||
end
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
function cat
|
function cat
|
||||||
if type -q bat >/dev/null
|
if type -q bat >/dev/null
|
||||||
bat $argv
|
bat $argv
|
||||||
else
|
else
|
||||||
command cat $argv
|
command cat $argv
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Defined in /tmp/fish.IQuG4C/e.fish @ line 1
|
|
||||||
function e
|
function e
|
||||||
exa -al --git --group-directories-first $argv
|
exa -al --git --group-directories-first $argv
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -3,3 +3,4 @@ function fish_greeting
|
||||||
/bin/cat /var/run/motd
|
/bin/cat /var/run/motd
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -1,17 +1,16 @@
|
||||||
function fish_right_prompt
|
function fish_right_prompt
|
||||||
if is_git
|
if is_git
|
||||||
if is_git_dirty
|
if is_git_dirty
|
||||||
set_color --underline
|
set_color --underline
|
||||||
end
|
end
|
||||||
|
|
||||||
set_color yellow
|
set_color yellow
|
||||||
|
|
||||||
if is_git_ahead
|
if is_git_ahead
|
||||||
echo -n '^'
|
echo -n '^'
|
||||||
else
|
else
|
||||||
echo -n '='
|
echo -n '='
|
||||||
end
|
end
|
||||||
echo -n ' '
|
|
||||||
|
|
||||||
echo -n (git_branch)
|
echo -n (git_branch)
|
||||||
set_color normal
|
set_color normal
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
function git_branch
|
function git_branch
|
||||||
if is_git
|
if is_git
|
||||||
echo (git rev-parse --abbrev-ref HEAD ^/dev/null)
|
echo (git rev-parse --abbrev-ref HEAD ^/dev/null)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -4,9 +4,10 @@ function is_git_dirty
|
||||||
is_git; or return 1
|
is_git; or return 1
|
||||||
|
|
||||||
if git diff-files --quiet --ignore-submodules
|
if git diff-files --quiet --ignore-submodules
|
||||||
or git diff-index --cached --quiet --ignore-submodules HEAD --
|
and git diff-index --cached --quiet --ignore-submodules HEAD --
|
||||||
return 1
|
return 1
|
||||||
else
|
else
|
||||||
|
# we're dirty
|
||||||
return 0
|
return 0
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -2,3 +2,4 @@
|
||||||
function l
|
function l
|
||||||
ls -lah --group-directories-first $argv
|
ls -lah --group-directories-first $argv
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
function longtlds
|
function longtlds
|
||||||
wget -qO - http://data.iana.org/TLD/tlds-alpha-by-domain.txt | tail -n+2 | awk '{print length, $0;}' | sort -n $argv
|
wget -qO - http://data.iana.org/TLD/tlds-alpha-by-domain.txt \
|
||||||
|
| tail -n+2 \
|
||||||
|
| awk '{print length, $0;}' \
|
||||||
|
| sort -n $argv
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
function sysu
|
function sysu
|
||||||
systemctl --user $argv
|
systemctl --user $argv
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -4,3 +4,4 @@ function vz
|
||||||
vim $file
|
vim $file
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
function wildcard-cert
|
function wildcard-cert
|
||||||
sudo certbot certonly \
|
sudo certbot certonly \
|
||||||
--dns-cloudflare \
|
--dns-cloudflare \
|
||||||
--dns-cloudflare-credentials /root/.secrets/cloudflare.ini \
|
--dns-cloudflare-credentials /root/.secrets/cloudflare.ini \
|
||||||
--server https://acme-v02.api.letsencrypt.org/directory \
|
--server https://acme-v02.api.letsencrypt.org/directory \
|
||||||
--preferred-challenge dns-01 \
|
--preferred-challenge dns-01 \
|
||||||
--cert-name $argv[1] \
|
--cert-name $argv[1] \
|
||||||
-d $argv[1] \
|
-d $argv[1] \
|
||||||
-d \*.$argv[1]
|
-d \*.$argv[1]
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue