Add dotfiles
This commit is contained in:
parent
49bfe1a4d3
commit
b6e01a720b
52 changed files with 4701 additions and 0 deletions
18
dwmbar/modules/voidupdates
Executable file
18
dwmbar/modules/voidupdates
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Prints the number of updates for Void Linux
|
||||
|
||||
PREFIX=' Updates: '
|
||||
|
||||
get_updates()
|
||||
{
|
||||
if ! updates=$(xbps-install -Mun 2> /dev/null | wc -l ); then
|
||||
updates=0
|
||||
fi
|
||||
|
||||
echo "$PREFIX$updates"
|
||||
}
|
||||
|
||||
if [ $(( 10#$(date '+%M') % 3 )) -eq 0 ] && [ $(( 10#$(date '+%S') )) -eq 5 ]; then
|
||||
get_updates
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue