As scripts have been renamed recently, the headers of the scripts and the mentions to the old file names are incorrect.
This issue proposes to correct the headers and to change the mentions to the old names to the new ones.
IMPLEMENTATION DETAILS:
let's take the example of the battery script.
it has been renamed from ./scripts/battery.sh to ./scripts/a2n-s-battery -> change every occurence of battery.sh to a2n-s-battery. below is an extract of the diff:
@@ -145,3 +146,3 @@ help () {
#
- echo "battery.sh:"
+ echo "a2n-s-battery:"
echo " a script to check the state of the battery and throw appropriate notifications."
@@ -149,3 +150,3 @@ help () {
echo "Usage:"
- echo " battery.sh [-hcp]"
+ echo " a2n-s-battery [-hcp]"
echo ""
As scripts have been renamed recently, the headers of the scripts and the mentions to the old file names are incorrect.
This issue proposes to correct the headers and to change the mentions to the old names to the new ones.
IMPLEMENTATION DETAILS: let's take the example of the
battery
script../scripts/battery.sh
to./scripts/a2n-s-battery
-> change every occurence ofbattery.sh
toa2n-s-battery
. below is an extract of the diff: