2011-12-09 10:43:57 +01:00
|
|
|
#! /usr/bin/fish
|
|
|
|
|
2011-12-09 01:37:25 +01:00
|
|
|
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)
|
|
|
|
end
|
|
|
|
|
|
|
|
function cower
|
|
|
|
/usr/bin/cower --color=always --target=$HOME/var/aur $argv
|
|
|
|
end
|
|
|
|
|
|
|
|
function grep
|
|
|
|
/bin/grep --color=always $argv
|
|
|
|
end
|
|
|
|
|
|
|
|
function less
|
|
|
|
/bin/less -FXRS $argv
|
|
|
|
end
|
|
|
|
|
2011-12-09 10:43:57 +01:00
|
|
|
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
|