Thursday, 24 October 2024
BRIGITTE NIELSEN LOOKS A BIT MANNY
Wednesday, 23 October 2024
SCREENSAVERS ARE JUST EYE CANDY
Now that I'm using Linux Mint as my "daily driver" (everyday computer) I've started documenting some of the often quite bizarre issues that arise when switching from Windows to Linux.
Screensavers don't seem like such a big deal, but they are actually a good example of the typical sorts of issues that send NEWBS whimpering back to the dark fist of Microscum.
Before going any further I want to emphasize that this is only a minor issue that is not preventing me from using my Linux PC. But I'm going on about it here to bring attention to the sort of thing that needs to be changed if Linux is ever to become more popular. I certainly don't recommend trying to read or understand any of the purple text below. That is all geek speak which might as well be Chinese for most people. It's just here as an example of a lot of the incomprehensible Linux info that is posted online.
Here is a website that provides some non-geek information about Linux - https://www.reallinuxuser.com/
The way that Linux Mint installs itself by default, there is effectively no screensaver. After a while the computer just goes into sleep mode and switches to a black screen, so it looks like it is turned off. In Windows I would pick up my mouse and check if the light on the mouse was on, but in Linux even that is off, so without tapping the keyboard and waiting to see if the computer eventually wakes up in it's own good time, so I have no idea if it's even turned on or not.
This is probably all because some GEEK decided that screensavers are "just eye candy" and users are better off to not have one because they "waste power and heat up your CPU" as well as being a "security risk" (Yes, these are quotes from an actual GEEK on a Linux forum).
And that is the sort of thinking that explains why a completely free and in many ways totally superior operating system like Linux Mint only has a fraction of the market share of a load of badly designed globalist spyware like Windows 10. There are other reasons, but this sort of thinking does not help.
Of course you can add a screensaver, hundreds of screen savers in fact, because this is Linux, so you can change anything. But of course this is not as easy as it first sounds, because this is Linux, and nothing ever is.
All you need to do is install Xscreensaver and you will then have 200 free screensavers that you can set up to display whenever and however you want. Cool!
What Exactly is XScreenSaver?
XScreenSaver is an extensive and expandable collection of over 200 different screensavers that add visual flair and fun to otherwise dull computer displays when they are idle or sleeping.First released in 1993 by Open Source developer Jamie Zawinski, XScreenSaver has been delighting Linux users for over 25 years with continually updated screensavers ranging from simple geometrics animations to complex real-time renders and even interactive displays.
Over that quarter decade of development, XScreenSaver has racked up some impressive stats:
1.2 million downloads across major Linux distribution repositories
An average rating of 4 out 5 from over 3,000 reviews on Ubuntu universe
Featured as a top 10 must-have app on Linux systems by publications like LINUX+ magazine
Beyond quantities and ratings, XScreenSaver also wins praise from Linux users for features like:
The sheer variety of visual styles – from abstract to intricate photo-realistic animations
Customizability with per-display settings, shuffle modes and viewer-provided content
The light footprint compared to other screensaver options – important for older hardware
Simply put, if you want to unlock a world of cool, creative screensavers for your Linux Mint desktop, XScreenSaver is hands-down one of the best choices out there.
https://thelinuxcode.com/install-xscreensaver-linux-mint/
So what is the catch? Firstly most of the pre-installed screensavers appear to be from the 90's and they look absolutely terrible. And many of the others on the menu are not actually installed. But there are still lots of choices, and some of them look pretty cool. So what am I moaning about?
The ISSUE. As with many things Linux, there is an issue. When you reboot your computer it reverts to the power saving defaults that the original GEEK set up to save the world from dangerous "EYE CANDY"
Bugger... Can this be fixed? Of course it can, this is Linux, so everything can be fixed. But you will probably have to read solutions from GEEKS who will include the words "easy" and "type" in the same post...
Here is an example of an old forum reply:
Yup. Easy peezy.
Add the xscreensaver daemon to your list of startup programs. Go to System / Preferences / Sessions / Startup Programs, click "Add" and type "xscreensaver -no-splash".
Then
(in a terminal)
gksudo gedit /usr/share/applications/gnome-screensaver-preferences.desktop
find this line:
Exec=gnome-screensaver-preferences
change to:
Exec=xscreensaver-demo
comment out the last couple lines like so:
#X-GNOME-Bugzilla-Bugzilla=GNOME
#X-GNOME-Bugzilla-Product=gnome-screensaver
#X-GNOME-Bugzilla-Component=general
#X-Ubuntu-Gettext-Domain=gnome-screensaver
lastly,
Click System / Preferences / Screensaver to launch the xscreensaver configuration window, go to the "Advanced" tab and uncheck the "Power Management Enabled" checkbox. This should stop xscreensaver's power saving features from conflicting with Gnome Power Manager
https://www.computerforum.com/threads/adding-more-screensavers-to-xscreensaver.205759/
But that was long ago, in 2024 all this stuff will be sorted right? - NO! OMG WTF?
Each desktop environment has its own system for launching long-running daemons like XScreenSaver, and since many of them come bundled with their own (buggy, insecure, inferior) screen-locking frameworks, it is also necessary to disable those other frameworks before XScreenSaver can work.
Installing Xscreensaver on Gnome or Unity
For many years, GNOME included XScreenSaver as-is, and everything just worked. Not any more!
1: Fully uninstall the other screen saver packages:
sudo apt remove gnome-screensaver
sudo apt remove mate-screensaver
sudo apt remove cinnamon-screensaver
sudo apt remove light-locker
or
sudo rpm -e gnome-screensaver
sudo rpm -e mate-screensaver
sudo rpm -e cinnamon-screensaver
sudo rpm -e light-locker
Be careful that it doesn't try to uninstall all of GNOME.
2: Turn off GNOME's built-in blanking.
Set all of the following settings to "Never" or "Off", as these are all controlled by xscreensaver-settings(1) now:
"Settings / Privacy / Screen Lock / Blank Screen Delay"
"Settings / Privacy / Screen Lock / Automatic Screen Lock"
"Settings / Power / Blank Screen"
"Settings / Power / Automatic Suspend"
3: Launch XScreenSaver at login.
Launch "Tweaks", select "Startup Applications", click the plus sign, and select "XScreenSaver" (not "XScreenSaver Settings") from the (very long) menu.
Or, see the "Launching Xscreensaver from Systemd" section below. That works too.
4: Make GNOME's "Lock" icon use XScreenSaver.
This used to work, but no longer does with GNOME 3.38. If you figure it out, let me know! This still works for Cinnamon 4.8 and MATE 1.24:
sudo ln -sf /usr/bin/xscreensaver-command \
/usr/bin/gnome-screensaver-command
sudo ln -sf /usr/bin/xscreensaver-command \
/usr/bin/cinnamon-screensaver-command
sudo ln -sf /usr/bin/xscreensaver-command \
/usr/bin/mate-screensaver-command
sudo ln -sf /usr/bin/xscreensaver-command \
/usr/bin/xfce4-screensaver-command
sudo ln -sf /usr/bin/xscreensaver-command \
/usr/bin/light-locker-command
This change will get blown away when you upgrade.
https://www.mankier.com/1/xscreensaver
Let's face it, no regular computer user is going to do all that just to get a screensaver. Until Linux stops dicking around with this GEEK crap, Windows will continue to rule.
So have I sorted my screensaver? - No, not really, that would take more tweaking. At this point I have just changed the power settings to never go to sleep, so now I have the default screensaver showing, which is my usual wallpaper image as background with the time & date moving around the screen.
Having the time onscreen is actually quite handy, and now I can see that the PC is on, so I'm just going to leave it like that for now, but if I later have time & inclination, I may go onto the Mint Forum and try to find out how to set up Xscreensaver properly. But that might involve doing something weird with a daemon so it can all wait for another day...
Monday, 21 October 2024
THE HOT NEW MOTORBIKE TREND
Converting big old 500cc two stroke motocross bikes to road legal
https://www.youtube.com/watch?v=0ldagIL-Mis
Sunday, 20 October 2024
Friday, 18 October 2024
A BREAK FROM THE CIRCUS SHOW
Thursday, 17 October 2024
NEW PAGES
When I started this new blog at the start of 2024 I had the idea of making it all just short blog posts, but lately I've been wanting to post some longer articles - mainly because they are good summaries of information that I'm rereading and it's convenient to have a copy of them on my own blog.
So starting now in October 2024 I'm going to start adding some longer posts on here too - they will be in the "PAGES" section and some will be my own old posts mostly from my www.frot.co.nz blog, while others will be copy & paste copies of other people's work.
Here are two new pages I have just added today:
Tuesday, 15 October 2024
THE SCRUBBING OF A SHILL
In the early days of the Corbett Report, James Corbett often used to do presentations with an FBI whisleblower called Sibel Edmonds.
None of this is what it seems, & I think James Corbett came to realise she was a shill but this was the official story:
Sibel Edmonds is a former contract translator for the Federal Bureau of Investigation (FBI) and the founder and editor-in-chief of the independent news website NewsBud.
The FBI hired her as a translator shortly after 9/11 but fired her after less than seven months. She identified herself as a whistleblower and challenged her termination; however, the courts dismissed her lawsuit for wrongful termination because the FBI would need to disclose privileged information. She accused a colleague of covering up illicit activity involving Turkish nationals, alleged serious security breaches and cover-ups and that intelligence had been deliberately suppressed, endangering national security. Following her accusations, the US attorney-general imposed a state secrets privilege order on her, which prevents her from revealing more information about the FBI.[4] The PEN American Center awarded her the PEN/Newman's Own First Amendment Award in 2006 for her claims.[5] She published a memoir in March 2012, titled Classified Woman – The Sibel Edmonds Story.
https://en.wikipedia.org/wiki/Sibel_Edmonds
Revisiting this story - even using Yandex I couldn't find any updates - the story is scrubbed from the internet - almost everything is gone
Monday, 14 October 2024
NOT NORMAL
The weather - dark grey sky, heavy rain and cold wind is not NORMAL. The vast number of sick people is not NORMAL. The entire country going bankrupt while incompetent councils and government puppets get hand outs from Blackrock is not NORMAL.
NORMIES ARE NOT NORMAL!
Sunday, 13 October 2024
SIFT TOP 10 MOST POPULAR BLOG POSTS THIS MONTH
-
https://www.businessinsider.com/gabbi-tuft-before-and-after-transgender-wwe-wrestler-2023-9 Gabbi Alon Tuft (born November 1, 1978) is ...
-
I'm certainly no fan of Google, my evil online nemesis , but having posted on WordPress quite a lot in the past, along with a few othe...
-
At the start of 2026 I switched over to a carnivore diet. I'd already tried quite a few dietary experiments, and found from trial and er...
-
Odysee has been around since 2020 and has has really taken off as an alternative to YouTube. It is decentralized and uncensored, so during...
-
Ever wondered why vapes are so popular? It's winter - time to harden up and get outside! The girls don't sing. They just wave. ...
-
I've just set up a new channel on Odysee . It's such a cool platform I felt compelled to have one! I know that's a bit odd for a...
-
Back in the 90's I was checking out a cool new clothing brand called SHIFT. I guess the name stood for a shift to a new more advanced st...
-
In this post I'll be referring to "GEEKS" quite a bit. This is not entirely disrespectful, I do appreciate all the work ge...
-
Times change and this fake 50's style advert would freak most people out these days. Meanwhile coffee has replaced cigarettes now a...
-
There is just no way to tell 😂 NEWS is Not Even Worth Shit Looking ripped dude Well he might have a crack at it "Women's...
































.jpg)












.jpg)





