I've been having an issue with caffeine v3.5.1, where it automatically activates even when I'm not in full-screen mode in any window. (I think it might be getting triggered by browser windows - Firefox.) v3.4.2 doesn't have this issue. Anyone else experiencing this / have a fix/workaround?
Search Criteria
Package Details: caffeine-ng 4.2.0-2
Package Actions
Git Clone URL: | https://aur.archlinux.org/caffeine-ng.git (read-only, click to copy) |
---|---|
Package Base: | caffeine-ng |
Description: | Status bar application able to temporarily inhibit the screensaver and sleep mode. |
Upstream URL: | https://codeberg.org/WhyNotHugo/caffeine-ng |
Keywords: | caffeine powersaving screensaver |
Licenses: | GPL-3.0-or-later |
Conflicts: | caffeine, caffeine-bzr, caffeine-oneclick, caffeine-systray |
Provides: | caffeine, caffeine-bzr, caffeine-oneclick, caffeine-systray |
Replaces: | caffeine-oneclick, caffeine-systray |
Submitter: | whynothugo |
Maintainer: | whynothugo (darose) |
Last Packager: | darose |
Votes: | 123 |
Popularity: | 0.85 |
First Submitted: | 2014-10-19 05:26 (UTC) |
Last Updated: | 2024-09-24 00:34 (UTC) |
Dependencies (16)
- gtk3 (gtk3-no_deadkeys_underlineAUR, gtk3-classicAUR, gtk3-classic-xfceAUR, gtk3-patched-filechooser-icon-viewAUR)
- libayatana-appindicator
- libindicator-gtk3
- libnotify (libnotify-gitAUR)
- python-click
- python-dbus
- python-ewmhAUR
- python-gobject
- python-pulsectlAUR
- python-setproctitle
- python-wheel
- python-xdg (python-pyxdg)
- git (git-gitAUR, git-glAUR) (make)
- meson (meson-gitAUR) (make)
- scdoc (scdoc-gitAUR) (make)
- xfconf (xfconf-gtk2AUR, xfconf-gitAUR, xfconf-develAUR) (optional) – Support for Xfce presentation mode.
Required by (1)
- pyload-ng (optional)
Sources (2)
Latest Comments
« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 11 .. 25 Next › Last »
darose commented on 2021-04-20 16:39 (UTC)
FirstAirBender commented on 2021-03-12 07:39 (UTC) (edited on 2021-03-12 07:44 (UTC) by FirstAirBender)
If you started noticing that caffeine keeps running in the background, make sure you don't have an application making use of your speakers/mic.
For me, the culprit was speech-dispatcher
. I found out because caffeine reported that something called sd-dummy
was playing back audio. Strange because there was no audio playing and the speech-dispatcher service was not activated.
When I ran the command pstree -shap $(pidof speech-dispatcher)
, I got output similar to:
systemd,1
└─speech-dispatch,114394 --spawn --communication-method unix_socket --socket-path /run/user/1000/speech-dispatcher/speechd.sock
├─{speech-dispatch},114395
└─{speech-dispatch},114396
Which suggests that it was started by systemd! WTF?? How is started by systemd when the service was never enabled to begin with.
Anyways, my current solution was to kill it. You can also try the solution suggested here
If you continue to have it started randomly, then just remove that package.
sleedy commented on 2021-02-16 23:35 (UTC)
@yochananmarqos
I do have hicolor-icon-theme
installed, though, and it still doesn't work
yochananmarqos commented on 2021-02-15 17:07 (UTC)
@sleedy: Apparently hicolor-icon-theme
is a missing dependency.
sleedy commented on 2021-02-15 16:29 (UTC) (edited on 2021-02-15 16:42 (UTC) by sleedy)
3.5.1 doesn't work on KDE Manjaro; running in the terminal gives this:
/usr/lib/python3.9/site-packages/caffeine/main.py:61: PyGIWarning: AppIndicator3 was imported without specifying a version first. Use gi.require_version('AppIndicator3', '0.1') before import to ensure that the right version gets loaded.
from gi.repository import AppIndicator3
INFO:caffeine.core:Caffeine is starting up...
(caffeine:10901): Gtk-WARNING **: 15:28:52.979: Could not find the icon 'caffeine'. The 'hicolor' theme
was not found either, perhaps you need to install it.
You can get a copy from:
http://icon-theme.freedesktop.org/releases
Traceback (most recent call last):
File "/usr/bin/caffeine", line 33, in <module>
sys.exit(load_entry_point('caffeine-ng==3.5.1', 'gui_scripts', 'caffeine')())
File "/usr/lib/python3.9/site-packages/caffeine/main.py", line 454, in main
main = GUI(arguments["--preferences"])
File "/usr/lib/python3.9/site-packages/caffeine/main.py", line 251, in __init__
get_icon_pixbuf(16),
File "/usr/lib/python3.9/site-packages/caffeine/icons.py", line 48, in get_icon_pixbuf
pixbuf = icon_theme.load_icon(icon_name, size, Gtk.IconLookupFlags.NO_SVG)
gi.repository.GLib.Error: gtk-icon-theme-error-quark: Icon 'caffeine' not present in theme (null) (0)
Downgrading to 3.4.2 works, and it seems that the way icons are imported was changed in 3.5.1.
earlybird commented on 2021-01-19 05:57 (UTC)
Does not launch - this is what you get if launched in the terminal
caffeine /usr/lib/python3.9/site-packages/caffeine/main.py:61: PyGIWarning: AppIndicator3 was imported without specifying a version first. Use gi.require_version('AppIndicator3', '0.1') before import to ensure that the right version gets loaded. from gi.repository import AppIndicator3 Traceback (most recent call last): File "/usr/bin/caffeine", line 33, in <module> sys.exit(load_entry_point('caffeine-ng==3.5.0', 'gui_scripts', 'caffeine')()) File "/usr/lib/python3.9/site-packages/caffeine/main.py", line 454, in main main = GUI(arguments["--preferences"]) File "/usr/lib/python3.9/site-packages/caffeine/main.py", line 155, in init self.core = Caffeine(self.__process_manager) File "/usr/lib/python3.9/site-packages/caffeine/core.py", line 53, in __init GnomeInhibitor(), File "/usr/lib/python3.9/site-packages/caffeine/inhibitors.py", line 57, in init super().init(self) TypeError: init() takes 1 positional argument but 2 were given
darose commented on 2021-01-19 02:40 (UTC)
New 3.5.0 version seems buggy. Caffeine seems to activate constantly, even when I'm not in full-screen mode.
yochananmarqos commented on 2021-01-18 15:13 (UTC)
pkr commented on 2021-01-18 12:42 (UTC) (edited on 2021-01-18 12:43 (UTC) by pkr)
Getting error when starting from console after update today:
Traceback (most recent call last):
File "/usr/bin/caffeine", line 33, in <module>
sys.exit(load_entry_point('caffeine-ng==3.5.0', 'gui_scripts', 'caffeine')())
File "/usr/bin/caffeine", line 25, in importlib_load_entry_point
return next(matches).load()
File "/usr/lib/python3.9/importlib/metadata.py", line 77, in load
module = import_module(match.group('module'))
File "/usr/lib/python3.9/importlib/init.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1030, in _gcd_import
File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 680, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 790, in exec_module
File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
File "/usr/lib/python3.9/site-packages/caffeine/main.py", line 54, in <module>
from .core import Caffeine # noqa: E402
File "/usr/lib/python3.9/site-packages/caffeine/core.py", line 26, in <module>
from pulsectl import Pulse
ModuleNotFoundError: No module named 'pulsectl'
Looks like the dependencies are not completely listed or am I doing something wrong?
yochananmarqos commented on 2021-01-17 02:35 (UTC)
python-setuptools-scm
is missing from makedepends().
The options() array is not necessary, neither apply here.
Pinned Comments
whynothugo commented on 2023-05-05 09:34 (UTC)
After an upgrade to Python 3.11, you need to rebuild this package (and all Python packages in the AUR).