You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wish I was using Ubuntu so i could just add the ppa...ugh! Can we PLEEEEEEAAASSSSEEEE GET A .DEB PACKAGE?
Debian 11 fail as follows
dpkg-buildpackage: error: failed to sign touchpad-indicator_2.2.3-ubuntu20.04.0.dsc file: key is not signature-capable
pariah@GrandpappyLappy:~/Touchpad-Indicator$ sudo dpkg -i touchpad-indicator_all.deb
dpkg: error: cannot access archive 'touchpad-indicator_all.deb': No such file or directory
The text was updated successfully, but these errors were encountered:
Since Debian 11 (and Ubuntu 22.04) doesn't have AppIndicator anymore, touchpad-indicator needs to switch to using AyatanaAppIndicator. Fortunately it's backward compatible with AppIndicator. This little patch should take care of it so a debian package can be built.
--- a/src/touchpadindicator.py
+++ b/src/touchpadindicator.py
@@ -25,7 +25,7 @@
gi.require_version('Gdk', '3.0')
gi.require_version('GLib', '2.0')
gi.require_version('GdkPixbuf', '2.0')
- gi.require_version('AppIndicator3', '0.1')
+ gi.require_version('AyatanaAppIndicator3', '0.1')
gi.require_version('Notify', '0.7')
except Exception as e:
print(e)
@@ -33,7 +33,7 @@
from gi.repository import Gtk
from gi.repository import Gdk
from gi.repository import GdkPixbuf
-from gi.repository import AppIndicator3 as appindicator
+from gi.repository import AyatanaAppIndicator3 as appindicator
from gi.repository import Notify
from gi.repository import GLib
import os
I wish I was using Ubuntu so i could just add the ppa...ugh! Can we PLEEEEEEAAASSSSEEEE GET A .DEB PACKAGE?
Debian 11 fail as follows
dpkg-buildpackage: error: failed to sign touchpad-indicator_2.2.3-ubuntu20.04.0.dsc file: key is not signature-capable
pariah@GrandpappyLappy:~/Touchpad-Indicator$ sudo dpkg -i touchpad-indicator_all.deb
dpkg: error: cannot access archive 'touchpad-indicator_all.deb': No such file or directory
The text was updated successfully, but these errors were encountered: