FISH: Bring config closer to ZSH
This commit is contained in:
parent
3f8af57381
commit
a4db91cd26
1 changed files with 31 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
||||||
#! /bin/bash
|
#! /usr/bin/fish
|
||||||
|
|
||||||
function fish_prompt -d "Write out the prompt"
|
function fish_prompt -d "Write out the prompt"
|
||||||
printf '(%s%s %s%s%s)> ' (set_color 'magenta') (hostname|cut -d . -f 1) (set_color $fish_color_cwd) (prompt_pwd) (set_color normal)
|
printf '(%s%s %s%s%s)> ' (set_color 'magenta') (hostname|cut -d . -f 1) (set_color $fish_color_cwd) (prompt_pwd) (set_color normal)
|
||||||
end
|
end
|
||||||
|
@ -15,4 +16,32 @@ function less
|
||||||
/bin/less -FXRS $argv
|
/bin/less -FXRS $argv
|
||||||
end
|
end
|
||||||
|
|
||||||
set PAGER less
|
function ls
|
||||||
|
/bin/ls -F --color=always $argv
|
||||||
|
end
|
||||||
|
|
||||||
|
function mysql
|
||||||
|
/usr/bin/mysql --pager $argv
|
||||||
|
end
|
||||||
|
|
||||||
|
function slrn
|
||||||
|
set -x NNTPSERVER 'news.gmane.org'
|
||||||
|
/usr/bin/slrn $argv
|
||||||
|
end
|
||||||
|
|
||||||
|
function shutdown
|
||||||
|
dbus-send --system --print-reply \
|
||||||
|
--dest="org.freedesktop.ConsoleKit" \
|
||||||
|
/org/freedesktop/ConsoleKit/Manager \
|
||||||
|
org.freedesktop.ConsoleKit.Manager.Stop
|
||||||
|
end
|
||||||
|
|
||||||
|
function reboot
|
||||||
|
dbus-send --system --print-reply \
|
||||||
|
--dest="org.freedesktop.ConsoleKit" \
|
||||||
|
/org/freedesktop/ConsoleKit/Manager \
|
||||||
|
org.freedesktop.ConsoleKit.Manager.Restart
|
||||||
|
end
|
||||||
|
|
||||||
|
set -x PAGER 'less -FXRS'
|
||||||
|
set -x BROWSER firefox
|
||||||
|
|
Loading…
Reference in a new issue