Sep 2, 2023
By @x86asm_
Full fix (JS)
const key = 'useskinversion'; const params = new URLSearchParams(window.location.search); const version = params.get(key); if (!version) { // replace makes redirect not reflected in the browser back history window.location.replace(`${window.location.href}?${key}=1`); } Size fix (CSS)
.skin--responsive, .mw-page-container, .mw-content-container, .mw-workspace-container, .mw-article-toolbar-container { max-width: none; margin-left: 0; margin-right: 0; }
Sep 2, 2023
from @iceman
Learn how to setup printing services on Arch Linux for HP based printers connected via USB
This is mostly for hplip dependent printers, usually there’s a package for your printer either on aur or the official repositories. Check the wiki before you follow this guide. The content was written well over 2 years ago, as a more of a “note” rather than being a “tutorial/guide”.
Connect your printer Installing CUPS and other required stuff $ pacman -S cups $ systemctl enable cups $ systemctl start cups $ pacman -S hplip $ hp-setup -i Follow steps and download plugin and it should work.
...