mirror of
https://github.com/The-Repo-Club/DotFiles.git
synced 2024-11-28 18:28:39 -05:00
11 lines
139 B
Bash
Executable File
11 lines
139 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
packages() {
|
|
packages=$(pacman -Q | wc -l)
|
|
icon=""
|
|
printf " %s %s \n" "$icon" "$packages"
|
|
}
|
|
|
|
packages
|
|
|