git: f0bb9d28eb3c - stable/15 - freebsd-tips: Add a shell function for laptops
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 21 Nov 2025 17:57:22 UTC
The branch stable/15 has been updated by ziaee:
URL: https://cgit.FreeBSD.org/src/commit/?id=f0bb9d28eb3cb29b6e8f2ecd7de4e743dfbebc98
commit f0bb9d28eb3cb29b6e8f2ecd7de4e743dfbebc98
Author: Alexander Ziaee <ziaee@FreeBSD.org>
AuthorDate: 2025-11-14 14:40:44 +0000
Commit: Alexander Ziaee <ziaee@FreeBSD.org>
CommitDate: 2025-11-21 17:56:44 +0000
freebsd-tips: Add a shell function for laptops
MFC after: 3 days
Reviewed by: pauamma_gundo.com
Differential Revision: https://reviews.freebsd.org/D53748
(cherry picked from commit 42d9ae4945f281d12f3ef96cdbd7356e067f8b18)
---
usr.bin/fortune/datfiles/freebsd-tips | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/usr.bin/fortune/datfiles/freebsd-tips b/usr.bin/fortune/datfiles/freebsd-tips
index 6a2b59ff5fa7..379f772fea88 100644
--- a/usr.bin/fortune/datfiles/freebsd-tips
+++ b/usr.bin/fortune/datfiles/freebsd-tips
@@ -860,3 +860,11 @@ When netstat reports every 8 seconds, it tells traffic in bits per second:
$ netstat -I bge0 8
%
+Using vt(4) on a laptop? Try this sh(1) function. It provides an "h"
+command that prints the last 22 commands executed, the time, remaining
+battery life, and current working directory:
+
+h() { fc -l -22; printf "%s\n" "`date +%H:%M` -- `apm -l`% -- `pwd`"; }
+
+ -- Alexander Ziaee <ziaee@FreeBSD.org>
+%