diff --git a/README.md b/README.md index 5611cf2..5d67a48 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ which should show up in your applications menu. `mate-hud.py` reads two gsetting `mate-hud.py` will not execute until those gsettings keys are created, which the `mate-hud` Debian package will do, and the `enabled` key -is set to *True* using something like `dconf-editor`. +is set to *True* using something like `dconf-editor`. `mate-hud` can be enabled or disabled by MATE Tweak under `Panel > Panel Features > Enable HUD`. @@ -78,7 +78,6 @@ export UBUNTU_MENUPROXY=1 * `mate-desktop` * `python3` * `python3-dbus` - * `python3-pkgconfig` * `python3-pyinotify` * `python3-setproctitle` * `python3-xlib` diff --git a/setup.py b/setup.py index a77cb83..d737e57 100755 --- a/setup.py +++ b/setup.py @@ -28,9 +28,6 @@ import DistUtilsExtra.command.build_i18n import DistUtilsExtra.command.clean_i18n -import pkgconfig -rofi_prefix = pkgconfig.variables('rofi').get('prefix') - __VERSION__ = '22.10.0' def datafilelist(installbase, sourcebase): @@ -70,10 +67,10 @@ def datafilelist(installbase, sourcebase): ('{prefix}/share/icons/hicolor/64x64@2/apps'.format(prefix=sys.prefix), ['usr/share/icons/hicolor/64x64@2/apps/mate-hud.png']), ('{prefix}/share/icons/hicolor/128x128@2/apps'.format(prefix=sys.prefix), ['usr/share/icons/hicolor/128x128@2/apps/mate-hud.png']), ('{prefix}/share/icons/hicolor/scalable/apps'.format(prefix=sys.prefix), ['usr/share/icons/hicolor/scalable/apps/mate-hud.svg']), - ('{prefix}/share/rofi/themes/'.format(prefix=rofi_prefix), ['usr/share/rofi/themes/mate-hud.rasi']), - ('{prefix}/share/rofi/themes/'.format(prefix=rofi_prefix), ['usr/share/rofi/themes/mate-hud-hidpi.rasi']), - ('{prefix}/share/rofi/themes/'.format(prefix=rofi_prefix), ['usr/share/rofi/themes/mate-hud-rounded.rasi']), - ('{prefix}/share/rofi/themes/'.format(prefix=rofi_prefix), ['usr/share/rofi/themes/mate-hud-rounded-hidpi.rasi']), + ('{prefix}/share/rofi/themes/'.format(prefix=sys.prefix), ['usr/share/rofi/themes/mate-hud.rasi']), + ('{prefix}/share/rofi/themes/'.format(prefix=sys.prefix), ['usr/share/rofi/themes/mate-hud-hidpi.rasi']), + ('{prefix}/share/rofi/themes/'.format(prefix=sys.prefix), ['usr/share/rofi/themes/mate-hud-rounded.rasi']), + ('{prefix}/share/rofi/themes/'.format(prefix=sys.prefix), ['usr/share/rofi/themes/mate-hud-rounded-hidpi.rasi']), ] cmdclass = {