Webextension compatible extensions for Firefox 57

Now FF 57 (Quantum) has been released, old style extensions are no longer supported. Here are replacements that I’ve found: Feed RSS mini icon on Bookmarks Button – Awesome RSS DownThemAll – Download Star Click-to-Play Manager – ??? Copy Plain Text 2 – Copy PlainText FireGestures – Foxy Gestures PrefBar – ??? Might require multiple …

Continue reading ‘Webextension compatible extensions for Firefox 57’ »

Installing variety wallpaper changer on Fedora 25

The rpm-sphere rpm doesn’t work for me. First install some packages, you may need more, these worked for me: dnf install libindicator-gtk3 libdbusmenu-gtk3 libappindicator-gtk3 python-appindicator \ webkitgtk3 intltool Then create a python virtualenv & activate it. mkvirtualenv –system-site-packages -p $(which python2) utils Download the variety & python-distutils-extra tarballs & untar. Install both packages into your …

Continue reading ‘Installing variety wallpaper changer on Fedora 25’ »

nrpe systemd socket activation

If you’re using nrpe socket activation and don’t have a template file, try this in /etc/systemd/system/nrpe@.service : [Unit] Description=nrpe socket service Requires=nrpe.socket [Service] User=nrpe ExecStart=-/usr/bin/nrpe -c /etc/nrpe/nrpe.cfg –inetd StandardInput=socket StandardOutput=inherit StandardError=journal [Install] WantedBy=multi-user.target You’ll also need /etc/systemd/system/nrpe.socket : [Unit] Description=Nagios Remote Plugin Executor Documentation=http://www.nagios.org/documentation Before=nrpe.service Conflicts=nrpe.service [Socket] ListenStream=5666 Accept=yes [Install] WantedBy=sockets.target Then systemctl start nrpe.socket