Commit c44a5a53 authored by Dylan's avatar Dylan

Merge branch 'master' of github.com:dylanaraps/fetch

parents 3d7fd5bb 26030bf6
......@@ -39,6 +39,7 @@ printinfo () {
# info "Battery" battery
# info "Local IP" localip
# info "Public IP" publicip
# info "Users" users
# info "Birthday" birthday
# info "Song" song
......
......@@ -60,6 +60,7 @@ printinfo () {
# info "Song" song
# info "Local IP" localip
# info "Public IP" publicip
# info "Users" users
# info "Birthday" birthday
info linebreak
......@@ -1456,6 +1457,15 @@ getpublicip () {
# }}}
# Logged In Users {{{
getusers () {
users="$(who | awk '!seen[$1]++ {printf $1 ", "}')"
users=${users%\,*}
}
# }}}
# Birthday {{{
getbirthday () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment