From 0af7ad3e0d52fd5f29abf0edc8914ae852d8b332 Mon Sep 17 00:00:00 2001 From: Eric Lay Date: Thu, 7 Dec 2023 19:12:02 -0600 Subject: [PATCH] typo --- PKGBUILD | 4 ++-- systrayUpdater | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 84b8326..fd70288 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Eric Lay pkgname=systrayupdater -pkgver=0.1 +pkgver=r34.1698671 pkgrel=1 pkgdesc="PyQt5 system tray applet to notify of available updates" arch=('x86_64') @@ -26,4 +26,4 @@ package() { install -Dm755 systrayUpdater -t "$pkgdir/usr/bin" install -Dm666 SysTrayUpdater.desktop -t "$pkgdir/usr/share/applications" install -Dm755 ./*.png systrayupdater.yml -t "$pkgdir/$HOME/.config/$pkgname" -} \ No newline at end of file +} diff --git a/systrayUpdater b/systrayUpdater index 0c3cba1..d96cdd7 100755 --- a/systrayUpdater +++ b/systrayUpdater @@ -17,12 +17,12 @@ outputList = "" # Use config.yml file to allow for compatibility with # most terminal emulators possible & custom icon / timer duration -with open(path.expanduser("~/.config/systrayUpdater/systrayUpdater.yml")) as f: +with open(path.expanduser("~/.config/systrayUpdater/systrayupdater.yml")) as f: conf = yaml.load(f, yaml.FullLoader) term = str(conf['terminal']) opt = str(conf['option']) wait = int(conf['timer']) * 60000 - icn = path.join(path.expanduser("~/.config/systrayUpdater/"), str(conf['icon'])) + icn = path.join(path.expanduser("~/.config/systrayupdater/"), str(conf['icon'])) f.close() # Run checkupdates command