aboutsummaryrefslogtreecommitdiffstats
path: root/bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash')
-rw-r--r--bash/.bashrc11
1 files changed, 10 insertions, 1 deletions
diff --git a/bash/.bashrc b/bash/.bashrc
index 0f0b32d..37bb474 100644
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -39,7 +39,6 @@ exists() {
39 hash $@ 2> /dev/null 39 hash $@ 2> /dev/null
40} 40}
41 41
42
43if exists mpv; then 42if exists mpv; then
44 alias jblive='mpv rtmp://videocdn-us.geocdn.scaleengine.net/jblive/live/jblive.stream' 43 alias jblive='mpv rtmp://videocdn-us.geocdn.scaleengine.net/jblive/live/jblive.stream'
45elif exists vlc; then 44elif exists vlc; then
@@ -76,6 +75,16 @@ if exists ezjail-admin; then
76 } 75 }
77fi 76fi
78 77
78if exists pfctl; then
79 showbanned ()
80 {
81 for table in $(sudo pfctl -s Tables 2> /dev/null); do
82 echo "$table";
83 sudo pfctl -t $table -T show 2> /dev/null;
84 done
85 }
86fi
87
79if exists liquidprompt; then 88if exists liquidprompt; then
80 source liquidprompt 89 source liquidprompt
81fi 90fi