diff options
Diffstat (limited to 'polybar/cuts/scripts/checkupdates')
-rwxr-xr-x | polybar/cuts/scripts/checkupdates | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/polybar/cuts/scripts/checkupdates b/polybar/cuts/scripts/checkupdates index 4d8a5e8..ef9b433 100755 --- a/polybar/cuts/scripts/checkupdates +++ b/polybar/cuts/scripts/checkupdates @@ -1,23 +1,4 @@ #!/usr/bin/bash -# -# checkupdates: Safely print a list of pending updates. -# -# Copyright (c) 2013 Kyle Keen <keenerd@gmail.com> -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. -# - declare -r myname='checkupdates' declare -r myver='1.0.0' @@ -113,5 +94,3 @@ fi pacman -Qu --dbpath "$CHECKUPDATES_DB" 2> /dev/null | grep -v '\[.*\]' exit 0 - -# vim: set noet: |