• 0 Posts
  • 6 Comments
Joined 2 years ago
cake
Cake day: June 21st, 2023

help-circle
  • https://support.mozilla.org/eu/questions/1022724

    This suggests you can go to about:config and set devtools.toolbox.host to bottom for the toolbox.

    However, it also suggests that the Parent process toolbox you are looking at can’t be docked.

    It’s possible the one you saw before was the Web Console (Ctrl+Shift+k) which is docked by default. On that one, there are a couple of icons on the right side to re-dock either on the bottom or side of the tab content. I don’t know whether it is possible to dock the Browser Console.

    Try using Ctrl+Shift+K to open the console for a specific window/tab (this one should be dockable) instead of Ctrl+Shift+J, which opens a console for every window/tab combined (so can’t be docked to a specific window/tab)

    (Also who downvoted me for being the only one to even attempt to offer a solution, geez. Makes people not even want to try to help.)



  • Some games can detect if they are running a VM and block that as part of their anticheat. You may not be able to get roblox or fortnite running in a windows VM.

    Some games just flat out require actual Windows, so your options are “Have an actual Windows drive/partition” or “Just don’t play those games”




  • Which version of of SDDM (and presumably KDE) are you using?

    One of the comments one of those threads you linked points out that the bugs you’re sharing are for has changed.

    The components have been reworked since the button was disabled so maybe that helped. It used to be a PlasmaComponents2.TextField, now it’s a PlasmaExtras.PasswordField.

    PlasmaExtras.PasswordField has the button enabled! However, the implementation in the theme explicitly disables it.

    If you open up /usr/share/sddm/themes/breeze/Login.qml and scroll down to line 106. You’ll see rightActions: [] – this bit of code basically overrides the default behavior. It says "normally you have some actions here, but instead use this list, but [] is an empty list.

    So if you just comment that line out by adding // to the front of it… Everything should just work, since it will then revert back to using the built in value.

    However, the reason this was removed in the first place is in a comment on line 105: // Disable reveal password action because SDDM does not have the breeze icon set loaded

    If the icon set fails to load for whatever reason (if youre using a custom icon theme or something, i dunno why it might not be loaded), the button will fail to load again.

    You can test drive the SDDM lockscreen by running sddm-greeter-qt6 --test-mode --theme /usr/share/sddm/themes/breeze/ from the terminal.

    And this all assumes that you’re using the default breeze theme. If you are trying to use a different theme, not sure if any of this applies.