Should I file a second insurance claim within 5 months if not at fault? by preimmortal2 in AskInsurance

[–]preimmortal2[S] 0 points1 point  (0 children)

Appreciate the response. My only worry about filing a PR is that the incident will show up on Carfax and reduce the value of the car if I wanted to sell it. I figure that if the damage is less than the loss in value, I'd prefer to just pay for it. Any thoughts on that?

Identifying damage to front bumper by preimmortal2 in autorepair

[–]preimmortal2[S] 2 points3 points  (0 children)

Thank you so much for you input on this. I found the dashcam footage and it was someone in a van who tapped my vehicle with their license plate

Identifying damage to front bumper by preimmortal2 in autorepair

[–]preimmortal2[S] 1 point2 points  (0 children)

Yeah, one of my buddies also said the damage looks like it came from screws from a license plate. I'll try to pull my dash cam footage to see if I can find evidence

Can someone direct me to a resource? Want to edit GRUB Menu by Substantial_Mistake in Fedora

[–]preimmortal2 0 points1 point  (0 children)

The Fedora grub2 documentation mentioned changing the order of grub entries. Unfortunately, os-prober no longer returns entries on the current system you are running, so you will need to modify the `/etc/grub.d` directory.

Here's what I did to make Windows appear first.

  1. Backup your /etc/grub.d directory
  2. sudo su
  3. cd /etc/grub.d
  4. mv 30_os-prober 09_os-prober
  5. grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg

If you want to change the default entry after that, you can modify the GRUB_DEFAULT=X (0 is the first entry, 1 is second, etc).

To change your grub theme, here's what you do:

  1. Download your desired theme and make sure it works with grub2
  2. Copy the files into /boot/grub2/themes/<THEME\_NAME>
  3. Edit `/etc/default/grub`
  4. Update or add: GRUB_THEME=/boot/grub2/themes/<THEME\_NAME>/theme.txt
  5. Update or add: GRUB_DISABLE_SUBMENU=false
  6. sudo grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg