-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdf_mod_v2.0.4.sh
205 lines (190 loc) · 10.8 KB
/
df_mod_v2.0.4.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
#!/bin/bash
# name : df_mod_v2
# desciption : show filesystem usage
# autor : speefak
# licence : (CC) BY-NC-SA
VERSION=2.0.4
#-------------------------------------------------------------------------------------------------------------------------------------------------------
############################################################################################################
########################################## check/create config #########################################
############################################################################################################
#-------------------------------------------------------------------------------------------------------------------------------------------------------
ConfigFile=$HOME/.dff.cfg
if [[ ! -s $ConfigFile ]] || [[ $(cat $ConfigFile | grep -c Reconfigure=true ) -ge 1 ]] ; then
# create config file
df -hT -x tmpfs
printf "\n"
read -e -p " Enter local filesystems (main system e.g. /dev/sda1 ...): " -i "$(df | grep -w "/" | cut -d " " -f1)" LocalFileSystemsSystems
read -e -p " Enter local filesystems (storage e.g. sda5 sdb1 /home ...): " -i "/home" LocalFileSystemsStorage
read -e -p " Enter remote filesystems (e.g. fuse ssh smb ...): " -i "ssh fuse smb" RemoteFileSystems
read -e -p " Enter frame color ( default red ): " -i "1" FrameColor
read -e -p " Enter column header color (default green): " -i "2" ColumnHeaderColor
read -e -p " Enter bar range low % (default 0-59 ): 0-" -i "59" BarThresholdLow
read -e -p " Enter bar range mid % (default 60-89 ): $(($(echo $BarThresholdLow | cut -d "-" -f2) +1 ))-" -i "89" BarThresholdMid
BarThresholdHigh="100"
echo " Enter bar range high % (default 90-100 ): $(($(echo $BarThresholdMid | cut -d "-" -f2) +1 ))-100"
read -e -p " Enter bar color low $BarRangeLow% (default green ): " -i "2" BarColorLow
read -e -p " Enter bar color mid $BarRangeMid% (default yellow ): " -i "3" BarColorMid
read -e -p " Enter bar color high $BarRangeHigh% (default red ): " -i "1" BarColorHigh
printf "\n create configfile with following values: \n\n"
printf " Local main filesystems: $LocalFileSystemsSystems\n"
printf " Local storage filesystems: $LocalFileSystemsStorage\n"
printf " Remote filesystems: $RemoteFileSystems\n"
printf " Frame color: $FrameColor\n"
printf " Column header color: $ColumnHeaderColor\n"
printf " Bar Threshold low: $BarThresholdLow%%\n"
printf " Bar Threshold mid: $BarThresholdMid%%\n"
printf " Bar Threshold high: $BarThresholdHigh%%\n"
printf " Bar color low: $BarColorLow\n"
printf " Bar color mid: $BarColorMid\n"
printf " Bar color high: $BarColorHigh\n\n"
BarRangeLow=$(echo 0-$BarThresholdLow)
BarRangeMid="$(($(echo $BarThresholdLow | cut -d "-" -f2) +1 ))-$BarThresholdMid"
BarRangeHigh="$(($(echo $BarThresholdMid | cut -d "-" -f2) +1 ))-100"
# check for existing config file
if [[ -s $ConfigFile ]]; then
read -e -p " overwrite existing configuration (y/n) " -i "y" OverwriteConfig
if [[ $OverwriteConfig == [yY] ]]; then
rm $ConfigFile
printf "\n new configuration created\n"
else
printf "\n existing configuration :\n\n"
sed -i '/Reconfigure=true/d' $ConfigFile
cat $ConfigFile
exit
fi
fi
# write/replace config file
for i in LocalFileSystemsSystems LocalFileSystemsStorage RemoteFileSystems FrameColor ColumnHeaderColor \
BarThresholdLow BarThresholdMid BarThresholdHigh BarRangeLow BarRangeMid BarRangeHigh BarColorLow BarColorMid BarColorHigh; do
echo "$i=\""$(eval echo $(echo "$"$i)| tr "," "|" | tr " " "|")\" >> $ConfigFile
done
$0
exit
else
# read config file
source $ConfigFile
fi
#-------------------------------------------------------------------------------------------------------------------------------------------------------
############################################################################################################
####################################### define global variables ########################################
############################################################################################################
#-------------------------------------------------------------------------------------------------------------------------------------------------------
# define colors
FrameColor=$(tput setaf $FrameColor)
ColumnHeaderColor=$(tput setaf $ColumnHeaderColor)
BarColorLow=$(tput setaf $BarColorLow)
BarColorMid=$(tput setaf $BarColorMid)
BarColorHigh=$(tput setaf $BarColorHigh)
ResetColor=$(tput sgr0)
#-------------------------------------------------------------------------------------------------------------------------------------------------------
# define/filter df output
FileSystemLocalSystem=$(df -hl --output=source,fstype,size,used,avail,pcent,target | \
egrep ''$LocalFileSystemsSystems'' | sed '/tmpfs/g' | tr ":" " " | awk -F " " '{print $1,$2,$3,$4,$5,$6,$7,$8,$9}')
FileSystemLocalStorage=$(df -hl --output=source,fstype,size,used,avail,pcent,target | \
egrep ''$LocalFileSystemsStorage'' | sed '/tmpfs/g' | tr ":" " " | awk -F " " '{print $1,$2,$3,$4,$5,$6,$7,$8,$9}')
FileSystemRemote=$(df -h --output=source,fstype,size,used,avail,pcent,target | \
egrep ''$RemoteFileSystems'' | sed '/tmpfs/g' | tr ":" " " | awk -F " " '{print $1,$3,$4,$5,$6,$7,$8,$9}')
ColumnHeader="System-Device FS-Type Size Used Avail Used% Mountpoint Used-Graph"
SeperatorLine=$(echo $FrameColor"--------------------------------------------------------------------------------------------------$ResetColor" )
#-------------------------------------------------------------------------------------------------------------------------------------------------------
############################################################################################################
########################################### define functions ###########################################
############################################################################################################
#-------------------------------------------------------------------------------------------------------------------------------------------------------
usage () {
cat << USAGE
Disk Free Frontend - display free disk space - version $VERSION
Options are:
-h, --help display help
-v, --version display version
-m, --monochrome disable color
-s, --show config show configuration
-c, --config create configuration
USAGE
}
#-------------------------------------------------------------------------------------------------------------------------------------------------------
monochrome_output () {
FrameColor=$(tput setaf 7)
ColumnHeaderColor=$(tput setaf 7)
BarColorLow=$(tput setaf 7)
BarColorMid=$(tput setaf 7)
BarColorHigh=$(tput setaf 7)
SeperatorLine=$(echo $(tput setaf 7)"--------------------------------------------------------------------------------------------------" $(tput sgr0))
}
#-------------------------------------------------------------------------------------------------------------------------------------------------------
print_parser () {
echo "$@" | awk -F " " '{printf " %-25s %10s %5s %5s %5s %5s %11s %-20s \n", $1, $2, $3, $4, $5, $6, $8, $7}'
}
#-------------------------------------------------------------------------------------------------------------------------------------------------------
print_graph_star () {
for i in `seq 1 10 $BarValue`; do
printf "*"
done
printf "\n"
}
#-------------------------------------------------------------------------------------------------------------------------------------------------------
print_graph_wildcard () {
for i in `seq $BarValue 10 90`; do
printf "-"
done
printf "]\n"
}
#-------------------------------------------------------------------------------------------------------------------------------------------------------
print_graph () {
BarValue=$(echo "$1" | tr " " "\n" | grep "%" | sed 's/[^0-9]*//g' )
if [[ $BarValue -le $BarThresholdLow ]]; then
printf "[$(echo "$(print_graph_star $BarValue)" )" | sed 's/\*/'$BarColorLow\*'/' && printf $ResetColor && print_graph_wildcard $BarValue
elif [[ $BarValue -le $BarThresholdMid ]]; then
printf "[$(echo "$(print_graph_star $BarValue)" )" | sed 's/\*/'$BarColorMid\*'/' && printf $ResetColor && print_graph_wildcard $BarValue
elif [[ $BarValue -le $BarThresholdHigh ]]; then
printf "[$(echo "$(print_graph_star $BarValue)" )" | sed 's/\*/'$BarColorHigh\*'/' && printf $ResetColor && print_graph_wildcard $BarValue
fi
}
#-------------------------------------------------------------------------------------------------------------------------------------------------------
print_output_line () {
SAVEIFS=$IFS
IFS=$(echo -en "\n\b")
for i in $1 ; do
print_parser "$i $(print_graph $i)"
done
IFS=$SAVEIFS
}
#-------------------------------------------------------------------------------------------------------------------------------------------------------
############################################################################################################
############################################# check options ############################################
############################################################################################################
#-------------------------------------------------------------------------------------------------------------------------------------------------------
case $1 in
-[hv]) usage
exit;;
-m) monochrome_output;;
-s) cat $ConfigFile
exit ;;
-c) echo "Reconfigure=true" >> $ConfigFile
$0
exit;;
?*) usage
exit;;
esac
#-------------------------------------------------------------------------------------------------------------------------------------------------------
############################################################################################################
############################################# start script #############################################
############################################################################################################
#-------------------------------------------------------------------------------------------------------------------------------------------------------
printf "$SeperatorLine \n"
printf "$ColumnHeaderColor" && print_parser "$ColumnHeader"
printf "$SeperatorLine \n"
printf "$ResetColor Main System $FrameColor|\n"
printf "$FrameColor-------------+ $ResetColor\n"
print_output_line "$FileSystemLocalSystem"
printf "$SeperatorLine \n"
printf "$ResetColor Storage Filesystems $FrameColor|\n"
printf "$FrameColor---------------------+$ResetColor\n"
print_output_line "$FileSystemLocalStorage"
printf "$SeperatorLine \n"
printf "$ResetColor Network shares / Removeable Medium $FrameColor|\n"
printf "$FrameColor------------------------------------+$ResetColor\n"
print_output_line "$FileSystemRemote"
printf "$SeperatorLine \n"
exit 0