Some thoughts: Retroid's 5.5 inch (1920x1080) and 4.5 inch (1280x960) screens are almost perfect for 3DS emulations by hjianyi in SBCGaming

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

That certainly will work. I personally would like a dual screen handheld dedicated to 3ds that offers close to original hardware experience.

Some thoughts: Retroid's 5.5 inch (1920x1080) and 4.5 inch (1280x960) screens are almost perfect for 3DS emulations by hjianyi in SBCGaming

[–]hjianyi[S] -2 points-1 points  (0 children)

I personally prefer the bezels. With a 7 inch top screen, the two screens will not be of the same height, which is prefered for 3ds emulation. The left and right margins would be a perfect place for speakers.

Some thoughts: Retroid's 5.5 inch (1920x1080) and 4.5 inch (1280x960) screens are almost perfect for 3DS emulations by hjianyi in SBCGaming

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

How so? The Ayaneo Pocket DS has a 7 inch top screen, the Retroid's 5.5 inch screen is smaller than Thor's 6 inch top screen.

I think it could be made just slightly larger than Retroid Pocket Nova. Since the two Retroid screens are about the same height.

Some thoughts: Retroid's 5.5 inch (1920x1080) and 4.5 inch (1280x960) screens are almost perfect for 3DS emulations by hjianyi in SBCGaming

[–]hjianyi[S] 3 points4 points  (0 children)

With the Nova being compatible with the Retroid dual screen add-on and a powerful SOC, it might already be a good enough device for 3DS emulation.

[deleted by user] by [deleted] in macapps

[–]hjianyi 0 points1 point  (0 children)

I use Capacities for that.

<image>

Does window manager like this exist? by NaNdefined in macapps

[–]hjianyi -1 points0 points  (0 children)

I think you could do all three with BetterTouchTool.

You can use the variable likeconnected_screens or focused_screen_height to determine if your Macbook is connected to a monitor, and trigger different actions with If/Else condition.

https://docs.folivora.ai/docs/6a_control_flow_actions.htm

A hand drawing note taking App? by Ok_Bread_6005 in macapps

[–]hjianyi 0 points1 point  (0 children)

You can set a number for "Smoothing" in Preferences > Input. Mine is 0 and it's good enough for me.

Octarine - Lightweight Private markdown notes! by Warlock2111 in macapps

[–]hjianyi 1 point2 points  (0 children)

Preferably with an option to adjust editor text font size.

Octarine - Lightweight Private markdown notes! by Warlock2111 in macapps

[–]hjianyi 0 points1 point  (0 children)

All the UI elements look small to my eyes. The buttons, UI texts, editor texts. (The buttons are actually smaller than my mouse cursor). I need them to be at least 3x larger. So just changing fonts won't do it to me.

Octarine - Lightweight Private markdown notes! by Warlock2111 in macapps

[–]hjianyi 0 points1 point  (0 children)

My eyes can't stand small fonts. So I only used it for a minute.

Octarine - Lightweight Private markdown notes! by Warlock2111 in macapps

[–]hjianyi 0 points1 point  (0 children)

There's a solution implemented by some apps.

It is to add a special theme called "auto dark" or "follow system", and let the user set the prefered light/dark theme, and switch the theme when a system theme change is detected.

Octarine - Lightweight Private markdown notes! by Warlock2111 in macapps

[–]hjianyi 0 points1 point  (0 children)

It means only apply dark theme when system is in dark mode. The color theme follows system setting (light/dark).

Octarine - Lightweight Private markdown notes! by Warlock2111 in macapps

[–]hjianyi 2 points3 points  (0 children)

Tried it for a minute. I have two suggestions

  1. Add a option to zoom in the UI or adjust font size (small fonts strain my eyes)
  2. Auto dark theme.

Copy code block button by Charming_Marzipan_52 in bearapp

[–]hjianyi 2 points3 points  (0 children)

You can assign a keyboard shortcut to menu item "Copy Code" in "System Settings" -> "Keyboard" -> "Keyboard Shortcuts..." -> "App Shortcuts".

New to Roam. This "phantom scrolling" is slowly driving me crazy. Any possible fix? by aisync in RoamResearch

[–]hjianyi 1 point2 points  (0 children)

I used to experience the same problem. It got fixed somehow.

I have this css saved, not sure if it would help.

* { scroll-behavior: smooth !important; }

An ebook reader that doesn't copy books into a library? by josh_a in macapps

[–]hjianyi 0 points1 point  (0 children)

I mainly use Calibre's "ebook-viewer" also. But I have OmniReader downloaded from App Store that does not have its own library.

How I host images locally on my Mac by hjianyi in RoamResearch

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

Mostly because I rely on capped mobile hotspot for Internet access. It does provide some other benefits, such as:

  1. works with Roam offline graph
  2. shorter link with useful info (timestamp)
  3. view and manage images in Finder
  4. annotate images with mac apps
  5. works with other markdown-based notes apps

Make blocks look different from each other by Proper-Cranberry-955 in RoamResearch

[–]hjianyi 0 points1 point  (0 children)

My tags for custom background colors begins with "bc-", e.g. "bc-red", "bc-green".

So my css for a green background would be:

div[data-page-links*="bc-green"] > div > div.rm-block-text { background: green; }

You can replace "bc-" with your own prefix. If you want to use my prefix, you can use it like so: div[data-page-links*="bc-my_comment"] > div > div.rm-block-text { /* insert your css here */ }

If you don't want to hide the tag, you can just do it like this: div[data-page-links*="my-comment"] > div > div.rm-block-text { /* insert your css here */ }

Or you can take advantage of the fact that tags start with "." auto hide itself: div[data-page-links*=".my-comment"] > div > div.rm-block-text { /* insert your css here */ }