aboutsummaryrefslogtreecommitdiff
path: root/tools/rm_hardinfo.sh
blob: 81b5c614464955d78b84281a8a7a9d4a9ccce793 (plain)
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
#!/bin/bash

# when you want to remove the hardinfo* mess from a make install

if [[ $EUID -ne 0 ]]; then
   echo "This script must be run as root."
   exit 1
fi

remove_hardinfo() {
  BASEDER="$1"
  echo "Removing hardinfo* from $BASEDER ..."
  rm -rf "$BASEDER/share/hardinfo*"
  rm -rf "$BASEDER/lib/hardinfo*"
  rm -f "$BASEDER"/share/locale/*/LC_MESSAGES/hardinfo*.mo
  rm -f "$BASEDER/bin/hardinfo*"
  rm -f "$BASEDER/share/applications/hardinfo*.desktop"
  rm -f "$BASEDER/share/doc/hardinfo*"
  rm -f "$BASEDER/share/man/man1/hardinfo*.1.gz"
  rm -f "$BASEDER/share/pixmaps/hardinfo*.xpm"
  rm -f "$BASEDER/share/menu/hardinfo*"
  #locate -e hardinfo | grep "$BASEDER"
}

# add some other base install path here
remove_hardinfo "/usr/local"

echo "Removing hardinfo* settings..."
rm -rf ~/.config/hardinfo*