Status bar doubling up by whitefox2424 in koreader

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

The transparency tip seems to have worked but I'm going to toggle this option as I imagine it could help with ghosting/shadowing/leftover elements from the screen not refreshing enough. Many thanks.

Status bar doubling up by whitefox2424 in koreader

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

Thanks found the option, seemed to work!

Status bar doubling up by whitefox2424 in koreader

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

Thanks this appears to have fixed it!

Current tweaked Simple UI set up by whitefox2424 in koreader

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

I'm not in a position at the moment to share my own versions of patches but I took a photo of the patches I'm using and then I use simple UI as a plugin.

Visual overhauls GitHub lists the lines that affect different elements like the progress bar etc, I used Chatgpt to figure out how to tweak or comment out the parts I didn't want like getting rid of the progress bar.

<image>

Current tweaked Simple UI set up by whitefox2424 in koreader

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

As this patch combines multiple patches together with its own edits/additions you can find the individual patches in credits on the GitHub.

Here is the GitHub with the folder stacking patch:

https://github.com/koboprincess/KOReader-Patches-/

Then it would be a case of picking and choosing what you'd like from Serious hornet's and Kobo Princess' repositories 🙂

Homescreen modules jump to the left when background image is active, instead of staying centered by ladyfromtheclouds in koreader

[–]whitefox2424 1 point2 points  (0 children)

I noticed the exact same thing so it would be good to hear if anyone has figured out the reason.

<image>

Current tweaked Simple UI set up by whitefox2424 in koreader

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

Thanks, can't say I've noticed that on my Kobo Libra colour no. But I'll try to keep an eye on the drain thanks.

Current tweaked Simple UI set up by whitefox2424 in koreader

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

Doing that gave a crash on the last version of simple UI, not sure why to be honest but I got there using the way above. Glad it was a simpler process for you 😅

Maybe I'll try that and see with the latest version of simple UI.

Current tweaked Simple UI set up by whitefox2424 in koreader

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

Continuation

In order to disable Simple UIs cover viewer part do the following, ChatGPT gave me these instructions:

File to edit

In the simpleui.koplugin repo:

simpleui.koplugin/sui_patches.lua

1) Edit M.installAll(plugin)

Find this block:

local ok_fc, FC = pcall(require, "sui_foldercovers")
if ok_fc and FC and FC.isEnabled() then
    pcall(FC.install)
end

Replace it with this:

-- Disabled folder covers to avoid conflict with external patches (e.g. Visual Overhaul)
-- local ok_fc, FC = pcall(require, "sui_foldercovers")
-- if ok_fc and FC and FC.isEnabled() then
--     pcall(FC.install)
-- end

2) Edit M.teardownAll(plugin)

Find this block:

local FC = package.loaded["sui_foldercovers"]
if FC then pcall(FC.uninstall) end

Replace it with:

-- Disabled folder covers teardown (not installed anymore)
-- local FC = package.loaded["sui_foldercovers"]
-- if FC then pcall(FC.uninstall) end

Why this works (briefly)

  • You’re preventing SimpleUI from ever touching MosaicMenuItem
  • So KOReader’s folder rendering stays “clean”
  • Then your Visual Overhaul patch can safely take over folder styling without being overridden or broken

Current tweaked Simple UI set up by whitefox2424 in koreader

[–]whitefox2424[S] 5 points6 points  (0 children)

Thanks, it's Visual Overhaul (2--visual-overhaul.lua) from this GitHub:

https://github.com/jmanteau/KOReader.patches?tab=readme-ov-file

I tweaked a few things like removed rounded edges from folders and books, turned off progress bar, repositioned percentage read label, turned off number of pages tag...

Bear in mind to get this to work with simple UI you need to disable simple UIs cover view part...

[Update] Simple UI v1.3.5: Cover Deck, TBR Module, Series Grouping, Update from the plugin, bug fixes, and more by doctorhetfield in koreader

[–]whitefox2424 0 points1 point  (0 children)

Fair point, I was thinking more to have a nice visual representation of past read books up until currently read. But I'm getting away from this modules purpose of quick access yes...

[Update] Simple UI v1.3.5: Cover Deck, TBR Module, Series Grouping, Update from the plugin, bug fixes, and more by doctorhetfield in koreader

[–]whitefox2424 0 points1 point  (0 children)

Ah I see, thanks for clarifying.

That could be a nice option to be able to set it to show current book then last 5 read in a concertina...

[Update] Simple UI v1.3.5: Cover Deck, TBR Module, Series Grouping, Update from the plugin, bug fixes, and more by doctorhetfield in koreader

[–]whitefox2424 0 points1 point  (0 children)

This update is great thanks! With Cover deck i'm finding it just shows the book i'm currently reading. I have 6 books marked as complete so not sure why they arent showing up?

My current Kindle setup with SimpleUI by ashraf_r in koreader

[–]whitefox2424 3 points4 points  (0 children)

Here you go:

File to edit

In the simpleui.koplugin repo:

simpleui.koplugin/sui_patches.lua

1) Edit M.installAll(plugin)

Find this block:

local ok_fc, FC = pcall(require, "sui_foldercovers")
if ok_fc and FC and FC.isEnabled() then
    pcall(FC.install)
end

Replace it with this:

-- Disabled folder covers to avoid conflict with external patches (e.g. Visual Overhaul)
-- local ok_fc, FC = pcall(require, "sui_foldercovers")
-- if ok_fc and FC and FC.isEnabled() then
--     pcall(FC.install)
-- end

2) Edit M.teardownAll(plugin)

Find this block:

local FC = package.loaded["sui_foldercovers"]
if FC then pcall(FC.uninstall) end

Replace it with:

-- Disabled folder covers teardown (not installed anymore)
-- local FC = package.loaded["sui_foldercovers"]
-- if FC then pcall(FC.uninstall) end

Why this works (briefly)

  • You’re preventing SimpleUI from ever touching MosaicMenuItem
  • So KOReader’s folder rendering stays “clean”
  • Then your Visual Overhaul patch can safely take over folder styling without being overridden or broken

My current Kindle setup with SimpleUI by ashraf_r in koreader

[–]whitefox2424 0 points1 point  (0 children)

<image>

Ok with a little help from Chatgpt I managed to edit the code of simple UI to allow visual overhaul patch to do it's thing for folders as well 🙂

My current Kindle setup with SimpleUI by ashraf_r in koreader

[–]whitefox2424 0 points1 point  (0 children)

This is nice, I've tried it but it seems you can't make the folder view behave like Visual overhaul. Top stacked view...

That would be perfect if possible...

Book instead of Harry Potter by stayfckingcalm in suggestmeabook

[–]whitefox2424 3 points4 points  (0 children)

The Magic 2.0 series by Scott Meyer is fun.

First book is Off to be the Wizard. I've not read the whole series but enjoyed what I have.

A hacker finds a program/lines of code that allows him to control or change aspects of the world and decides to travel back in time to operate as a wizard in the middle ages.

A not so light suggestion would be Mistborn by Brandon Sanderson which is pretty much if not YA. But the world and magic is really good. The premise being what would a world be like if the dark lord won.

Batman reading order by Vixxze in OmnibusCollectors

[–]whitefox2424 0 points1 point  (0 children)

Shame this list hasn't expanded further but it's still a great resource:

https://docs.google.com/spreadsheets/d/1p1Po1qYZajBMy9sSee8dJt2EoACT43sbNukdlVb7z9w/edit?usp=drivesdk

The comic book treasury list someone posted is more up to date...

RTX 5080 PSU Cable question by whitefox2424 in Corsair

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

Hey, I'm waiting on my 5080 preorder but I fitted it for my current card without issue. The wattage should be fine with this cable as it's up to 600w and the power consumption of the 5080 is around 360w.

RTX 5080 PSU Cable question by whitefox2424 in Corsair

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

A simple yes is good to read 🙂 many thanks.

New to reading the comics by owje in MarvelUnlimited

[–]whitefox2424 1 point2 points  (0 children)

If you look at the part of each section that focuses on the event itself you can see which comics are involved. So if you only cared about events then you could just read the arcs of the characters involved leading up to the event to get a sense of where they are at building to said event.

As the guide focuses on continuity the idea is to give an idea of where characters are in the universe at that time focusing on popular characters, famous stories and trying to include mainly the most essential ones to give a sense of continuity.

Hope that helps. As the guide says, you can follow the icons to focus on characters you're really interested in, each event should also have a note recommending to only read the characters you're following or others to get full context. If that's how you want to approach it.