mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-21 14:03:18 -07:00
usr/lib/byobu/rcs_cost, usr/lib/byobu/time_binary,
usr/lib/byobu/include/common, usr/lib/byobu/include/mondrian, usr/lib/byobu/include/shutil:
This commit is contained in:
parent
6cb9b6064b
commit
e4906a9328
4 changed files with 6 additions and 4 deletions
4
debian/changelog
vendored
4
debian/changelog
vendored
|
@ -23,7 +23,9 @@ byobu (5.8) unreleased; urgency=low
|
||||||
* usr/lib/byobu/cpu_freq, usr/lib/byobu/cpu_temp,
|
* usr/lib/byobu/cpu_freq, usr/lib/byobu/cpu_temp,
|
||||||
usr/lib/byobu/custom, usr/lib/byobu/date, usr/lib/byobu/disk_io,
|
usr/lib/byobu/custom, usr/lib/byobu/date, usr/lib/byobu/disk_io,
|
||||||
usr/lib/byobu/ec2_cost, usr/lib/byobu/logo, usr/lib/byobu/network,
|
usr/lib/byobu/ec2_cost, usr/lib/byobu/logo, usr/lib/byobu/network,
|
||||||
usr/lib/byobu/rcs_cost, usr/lib/byobu/time_binary:
|
usr/lib/byobu/rcs_cost, usr/lib/byobu/time_binary,
|
||||||
|
usr/lib/byobu/include/common, usr/lib/byobu/include/mondrian,
|
||||||
|
usr/lib/byobu/include/shutil:
|
||||||
- use printf where possible, saves some forks
|
- use printf where possible, saves some forks
|
||||||
|
|
||||||
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 30 Jan 2012 18:12:49 -0600
|
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 30 Jan 2012 18:12:49 -0600
|
||||||
|
|
|
@ -44,7 +44,7 @@ if [ -z "${BYOBU_INCLUDED_LIBS}" ]; then
|
||||||
unset i
|
unset i
|
||||||
fi
|
fi
|
||||||
if ! command -v "$BYOBU_BACKEND" >/dev/null; then
|
if ! command -v "$BYOBU_BACKEND" >/dev/null; then
|
||||||
echo "ERROR: $PKG won't work without tmux or screen installed" 1>&2
|
printf "%s\n" "ERROR: $PKG won't work without tmux or screen installed" 1>&2
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -44,7 +44,7 @@ get_random_pane() {
|
||||||
r=$((RANDOM % 4))
|
r=$((RANDOM % 4))
|
||||||
done
|
done
|
||||||
LAST_PANE="$r"
|
LAST_PANE="$r"
|
||||||
echo "$r"
|
printf "%s\n" "$r"
|
||||||
}
|
}
|
||||||
|
|
||||||
get_random_numbers() {
|
get_random_numbers() {
|
||||||
|
|
|
@ -141,7 +141,7 @@ newest() {
|
||||||
}
|
}
|
||||||
|
|
||||||
error() {
|
error() {
|
||||||
echo "ERROR: " "$@" 1>&2
|
printf "%s\n" "ERROR: " "$@" 1>&2
|
||||||
}
|
}
|
||||||
|
|
||||||
fail() {
|
fail() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue