You are not logged in.
Unless something has changed with Daedalus, I looked at my old .jwmrc files to see how I listed the various fonts. This is how I have one of them...I had to separate DejaVu from Sans with a dash; like so...
<Font>DejaVu-Sans-11:book</Font>
I'm going to bow out now. I'm not even using JWM right now, and my information may no longer be correct.
EDIT: I don't think you should have an exclamation mark in <Font>. Is that a transcription error?
Yeah...the exclamation mark comments things out; however, if I remember correctly, the exclamation point should be enclosed with a left arrow, exclamation point, two dashes...followed by what is intended to be commented out...then closed with two dashes and a right arrow; such as...
<! -- put-some-stuff-here -->
Perhaps the exclamation point is causing jwm to have a nervous-jerkdown, because it's looking for the other characters but not seeing them?
Ah...okay. I'm sorry. I never used the .jwmrc file to control fonts other than specifying the fonts to be used in the menu, panel, and window title bars...I always let my local.conf file control everything as far as hinting (etc). I recall seeing that font configuration that you posted somewhere in the past, but I can't remember where I saw it...or what window manager was using it.
I don't mean to butt in, but this may possibly help?
It has been a while since I used JWM or made a release of it, but this is something that I've done on every window manager that I've used for many years to help with font rendering, and it has always worked for me. Whether it will help with your scenario or not, I can't say for sure. However, it will only take a couple of minutes to find out.
1. Open your file manager as root, and navigate to /etc/fonts/
2. You may see a file there called fonts.conf; however, create a new file, and name it local.conf
3. Copy and paste the following into the newly created local.conf file...
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font">
<edit mode="assign" name="hinting" >
<bool>true</bool>
</edit>
<edit mode="assign" name="autohint" >
<bool>true</bool>
</edit>
<edit mode="assign" name="hintstyle" >
<const>hintslight</const>
</edit>
<edit mode="assign" name="rgba" >
<const>rgb</const>
</edit>
<edit mode="assign" name="antialias" >
<bool>true</bool>
</edit>
<edit mode="assign" name="lcdfilter">
<const>lcddefault</const>
</edit>
</match>
<!-- Set preferred serif, sans serif, and monospace fonts. -->
<alias>
<family>serif</family>
<prefer>
<family>Droid Serif</family>
</prefer>
</alias>
<alias>
<family>sans-serif</family>
<prefer>
<family>Droid Sans</family>
</prefer>
</alias>
<alias>
<family>sans</family>
<prefer>
<family>Droid Sans</family>
</prefer>
</alias>
<alias>
<family>monospace</family>
<prefer>
<family>Droid Sans Mono</family>
</prefer>
</alias>
<alias>
<family>mono</family>
<prefer>
<family>Droid Sans Mono</family>
</prefer>
</alias>
</fontconfig>
4. Save the file and close it. Then reboot.
If it helped, you'll know. If it didn't, you'll know, and you can curse me, my wife, my children, and anyone else that you want.
What about a Jessie system that was upgraded to Stretch? Would the upgrade remove the working multi-boot menu?
I just checked package versions of both Devuan and Debian.
The only systems that are using version 2.06 are Devuan Ceres and Debian Sid. Everything else is using a lower version number (for now). So, it shouldn't affect you as far as I can tell.
I've done the tar.bz2 way for years...even on stable systems.
I think it was Zephyr who mentioned what he does; which is, what I do...
1. Create a hidden folder in my Home folder called .firefox
2. Download the tar.bz2 from the official Mozilla site
Note: I personally click on Download options and other languages in order to download Firefox-ESR
3. Extract it into the created .firefox folder
4. Create a firefox.desktop file in ~/.local/share/applications/ (so that it appears in my menu) that consists of the following information...
[Desktop Entry]
Name=Firefox
Exec=apulse /home/dan/.firefox/firefox/firefox
Terminal=false
Type=Application
Categories=Network;
Icon=firefox
If you notice the Exec= line, it leads off with apulse. I don't use pulseaudio, so you'll need to have apulse installed if you also don't use pulseaudio but want things like YouTube to have sound.
So, no matter which version you may "install", it will update itself automatically and independently from the repos of your system.
Probably better off using grub2 to chainload other linux/unix OS's rather than rely on os-prober.
https://www.gnu.org/software/grub/manua … ading.html
That may be the ticket. That's what I had to do when adding OpenBSD or NetBSD.
Just tried it on my Chimaera box (Arch and Beowulf in parallel installations): Adding that line to /etc/default/grub does not make any difference on efi installations.
rolfie
I don't use EFI.
I wonder why it doesn't work?
Any idea as to what led to that?
Well, from what I've read, and depending on which story a user wants to believe...
1 - Gossip (the devs of grub and the devs of os-prober had some kind of nervous-jerkdown with each other)
I don't know if that's true, and I don't care.
2. Security (the devs of grub claim there's security issues with os-prober)
I don't know it that's true either. It's not explained in the following link. All they say is that os-prober has shortcomings, and...
lead to potentially dangerous use cases and borderline opening attack vectors.
...however, I can't find how the grub devs have discovered or documented why os-prober has those issues.
I received an update to grub on my two Ceres-based systems (version 2.06-2), and during the upgrade, it warned me that os-prober would no longer run. So that means that people with dual-boot or multi-boot computers will no longer be able to...
update-grub
...in order to get their other systems to show in the grub menu.
It did give a very vague clue that doesn't really help people if they don't know where to look.
C'mon devs, you can do better than that!
Anyway,
To fix this issue, you can open and edit the following file...
/etc/default/grub
...and add the following line...
GRUB_DISABLE_OS_PROBER=false
Save and close the file, then open a terminal and run an...
update-grub
Not sure if this has affected people running daedalus or not...since I don't have a daedalus system.
Thanks MiyoLinux, it was the second one that I am familiar with.
Something about the Deepin startup sound is like fingernails on a chalk board.
Hahaha!
You're welcome!
Have you looked at /usr/share/fonts/ ?
Okay. Thanks!
Ahhh!
So, if any names for updates are detected, it will notify you. Nice!
I don't know why I didn't combine the two script into one...I guess I was having a brain-fart that day? LOL!
I'm guessing the user would have to set the "frontend" that they want to use?
Thanks for the clue about changing the shebang; I wasn't aware of the possibility of what may happen with bash.
Thanks fsr!
fsr!!! I'd like to see what you've done with everything if you get a chance!
In fact, I almost contacted you to see if you would look over the notifier scripts to see if you had any advice or improvements, but I didn't want to bother you, because I know how busy you are.
Thanks fsr!
Hi Ron...I've used two different startup sounds in the past. The one that I used on Miyo-Modern was the Deepin startup sound. The other one that I used was just a few seconds from a no copyright song. I don't think I've ever used any others except those two.
I'll just link both of them for you since I'm not sure which one you may be referring to.
The Deepin startup sound - https://u.pcloud.link/publink/show?code … 8JtbN4lOFy
The MiyoLinux startup sound - https://u.pcloud.link/publink/show?code … WJ5BhxGQqk
You should be able to sample them from the download pages. If you don't see the "Direct Download" button, just scroll down the page a few lines.
Okay...all three versions are now available if anyone is interested.
Each version will give a desktop notification and a notification in the system tray. Instructions are included with each version for installation and editing the script(s) if desired.
Each version will check for updates 2-3 minutes after system startup; thereafter, it will check every 6 hours. I chose 6 hours, because I'm running ceres, and Debian unstable provides updates every 6 hours. However, this can be changed in the script called notifier-six-hours.sh and in the updates-sync2-cron file.
1. Basic Update Notifier - it's just an update notifier; nothing else...and my preferred version. It will notify you if updates are available, but the user will have to manually install them via a terminal or synaptic. Click the icon in the system tray to make it disappear.
2. Synaptic Update Notifier - click the icon in the system tray, enter your password, and synaptic will open to upgrade your system. Instructions are included to allow the user to choose whether to have synaptic's main window show (along with the floating windows) during upgrades or to only show the floating windows.
3. Xterm Update Notifier - click the icon in the system tray, enter your password, and xterm will open to perform upgrades. Instructions are included if you want to use a different terminal.
Available for download from...
OSDN: https://osdn.net/projects/miyolinux/releases/76259
Sourceforge: https://sourceforge.net/projects/miyoli … fier/2021/
If you live in the US, Happy Thanksgiving!
Ron,
I'm not sure what may have happened.
I just got that update yesterday too, and it went fine.
Periodically, I'll run updates and they don't complete. Terminal output usually says something to the effect of "failed to connect to blah-blah-blah debian.org".
Follow Altoid's latest advice first.
If that doesn't correct it, I would try...
apt-get install --reinstall linux-image-amd64
Okay...
I've been working some more on the new iterations of the update notifier that use bash scripts instead of python. I've cut down on the number of scripts needed.
I have three versions. Two versions that use Xterm (or Synaptic) to upgrade stable systems. Both of those use dist-uprade in order to upgrade "stable" systems.
(You can edit one script to use whichever terminal you want if you don't want to use xterm)
The third version is just a notifier for testing or unstable systems. It will notify you when updates are available; however, you will need to do updates manually after being notified. It's left up to the user whether to upgrade or dist-upgrade.
When I have finished testing them, I'll post new download links here.
HoaS,
I hope that you know that while I was joking, I was also being serious. You always give good advice here.
Now...back to topic.
Thank you very much Altoid!
I feel really dumb saying this,
Ron, you've corrected me on some of my mistakes. There's never a dumb question, and no one knows it all...well...except maybe HoaS....
LOLOLOLOLOLOLOLOLOL!
...well, he does know a lot.
Anywho...we all feel dumb at some point. We all have our strengths and weaknesses.
...except for HoaS.
I've been eyeballing that package also.
Thanks fsr!
I'll check this out whenever I get the time to...
No promises though!
Thank you for all that you do with both Devuan and Refracta...it's much appreciated!
Thanks once again.
My pleasure Ron!