We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a777a92 commit d9c0b5dCopy full SHA for d9c0b5d
install.sh
@@ -0,0 +1,3 @@
1
+#!/bin/sh
2
+
3
+install lfetch /usr/bin/lfetch
lfetch
@@ -51,6 +51,11 @@ get_uptime()
51
output="${hours} hours, ${minutes} minutes, ${seconds} seconds"
52
}
53
54
+get_modules()
55
+{
56
+ output=$(cat /proc/modules | wc -l)
57
+}
58
59
get_ptys()
60
{
61
devices=$(ls -l /dev/pts | wc -l)
@@ -93,6 +98,7 @@ info "Hostname ~ " hostname
93
98
info "Version ~ " version
94
99
info "Last update date ~ " last_update_date
95
100
info "Uptime ~ " uptime
101
+info "Modules ~ " modules
96
102
info "Terminals open ~ " ptys
97
103
info "Bootloader type ~ " bootloader
104
info "Cmdline ~ " cmdline
0 commit comments