2
0
mirror of https://github.com/garabik/grc.git synced 2024-09-18 17:31:29 +02:00
bash-color-grc/grc.fish
Radovan Garabík ad736f824e
Merge pull request #81 from hamon-e/fish_update
do not colorize if output is not a terminal
2018-04-28 19:13:06 +02:00

27 lines
925 B
Fish

#!/usr/bin/env fish
#
# To load in ~/.config/fish/fish.conf or a new file in
# ~/.config/fish/conf.d add:
# source /etc/grc.fish (path may depend on install method)
#
# See also the plugin at https://github.com/oh-my-fish/plugin-grc
set -U grc_plugin_execs cat cvs df diff dig gcc g++ ls ifconfig \
make mount mtr netstat ping ps tail traceroute \
wdiff blkid du dnf docker docker-machine env id ip iostat \
last lsattr lsblk lspci lsmod lsof getfacl getsebool ulimit uptime nmap \
fdisk findmnt free semanage sar ss sysctl systemctl stat showmount \
tcpdump tune2fs vmstat w who
for executable in $grc_plugin_execs
if type -q $executable
function $executable --inherit-variable executable --wraps=$executable
if isatty 1
grc $executable $argv
else
eval command $executable $argv
end
end
end
end