my dotz
0

Configure Feed

Select the types of activity you want to include in your feed.

Add simple package manager for void

+21
+21
bin/vpm
··· 1 + #!/bin/sh 2 + 3 + case $1 in 4 + install) 5 + xbps-install -S "$2" 6 + ;; 7 + remove) 8 + xbps-remove -Rn "$2" 9 + ;; 10 + clean) 11 + xbps-remove -Oo 12 + ;; 13 + update) 14 + xbps-install -Suv 15 + ;; 16 + search) 17 + xbps-query -v -Rs "$2" 18 + ;; 19 + *) 20 + echo 'command not found' 21 + esac