Track_Shovel@slrpnk.net to Lemmy Shitpost@lemmy.worldEnglish · 8 months agoElder scrollsslrpnk.netimagemessage-square76fedilinkarrow-up11.13Karrow-down16file-text
arrow-up11.12Karrow-down1imageElder scrollsslrpnk.netTrack_Shovel@slrpnk.net to Lemmy Shitpost@lemmy.worldEnglish · 8 months agomessage-square76fedilinkfile-text
minus-squarestarman2112@sh.itjust.workslinkfedilinkarrow-up6·8 months agoSeriously fuck Wikipedia’s desktop redesign, I regret that I donated before the change
minus-squarenamingthingsiseasy@programming.devlinkfedilinkarrow-up6·8 months agoIn case you weren’t aware, there are extensions that you can use to restore the older (better) UIs. Here are a couple: https://addons.mozilla.org/en-US/firefox/addon/wikipedia-vector-skin/ https://addons.mozilla.org/en-US/firefox/addon/classic-wikipedia/ There are probably some for other browsers as well. I don’t use them though. I instead wrote myself a tampermonkey script to change it: if (!window.location.search.contains('useskin')) { var new_url = window.location.protocol + "//" + window.location.hostname + window.location.pathname; if (window.location.search == "") { new_url = new_url + "?useskin=monobook"; } else { new_url = new_url + window.location.search + "&useskin=monobook"; } new_url = new_url + window.location.hash; window.location.replace(new_url); } You can compare the available wikipedia styles on this page to see which one you like best: https://en.wikipedia.org/wiki/Wikipedia:Skin?useskin=monobook
minus-squarestarman2112@sh.itjust.workslinkfedilinkarrow-up7·8 months agoYeah, and I do that, I just don’t think I should have to. I should be able to open the website on a fresh install and not get nauseous using it.
Seriously fuck Wikipedia’s desktop redesign, I regret that I donated before the change
In case you weren’t aware, there are extensions that you can use to restore the older (better) UIs. Here are a couple:
There are probably some for other browsers as well. I don’t use them though. I instead wrote myself a tampermonkey script to change it:
if (!window.location.search.contains('useskin')) { var new_url = window.location.protocol + "//" + window.location.hostname + window.location.pathname; if (window.location.search == "") { new_url = new_url + "?useskin=monobook"; } else { new_url = new_url + window.location.search + "&useskin=monobook"; } new_url = new_url + window.location.hash; window.location.replace(new_url); }
You can compare the available wikipedia styles on this page to see which one you like best: https://en.wikipedia.org/wiki/Wikipedia:Skin?useskin=monobook
Yeah, and I do that, I just don’t think I should have to. I should be able to open the website on a fresh install and not get nauseous using it.