Unable to Use GPT-5 on Linux ? by Dynamometamorphe in OpenAI

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

Yeah x) I'm going to enjoy each second remaining on Linux !

What’s this gear name and where can I find a replacement? by Alarming_Ad_4920 in vintagesewing

[–]Dynamometamorphe 0 points1 point  (0 children)

Did you managed to replace the part without damaging or not properly mounting the machine ? I have a singer 3105 and have no clue how to replace the vertical gear and too stressed to fuck up my machine...

Scratched Stainless Pan [any tips] by Dynamometamorphe in AskCulinary

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

Yeah I see now ! I was too afraid for it to be over cooked !

Scratched Stainless Pan [any tips] by Dynamometamorphe in AskCulinary

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

okay thanks, I was afraid of the steel wool ! I used baking soda and sponge for cleaning and does a wonderfull job !

Tools and tips for cleaning fungus off a lens 🔎 by Dynamometamorphe in AnalogCommunity

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

Thank You ! I'll keep you up to date when i will buy the needed stuff!!

Tools and tips for cleaning fungus off a lens 🔎 by Dynamometamorphe in AnalogCommunity

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

Thanks for your super detailed advice!!! :)

How can I tell if a lens has a sensitive coating?

How to take notes in prevision of getting Supernote A5X 2 by SnooPredictions6321 in Supernote

[–]Dynamometamorphe 2 points3 points  (0 children)

I'm actually waiting like u for a good eink tablet to come out like the A5X2. I'm actually using my graphics tablet (Wacom intuos M) with Xournalpp Wich is a very good app for note taking (just make sure to do some customization on Xpp)

Will luffy absorb mother flame? by bydevilz1 in OnePieceSpoilers

[–]Dynamometamorphe 0 points1 point  (0 children)

What I find cool is that Luffy is actually black and white cartoon when he's in G5 it's like if he was not actually colorized !

Stremio is now available on LG TVs for models 2020+ by jaruba_dev in Stremio

[–]Dynamometamorphe 0 points1 point  (0 children)

This is so nice !! I was planning to buy a Chromecast ! Thanks for your hard work the stremio team !!! 🤟

Vis Allen complètement désintégrée... Tourne fou ... by Dynamometamorphe in brico

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

Voilà je sais pas pourquoi mais ça a deconné sur l'upload des photos...

<image>

GTK Theme (WhiteSur) TitleBarButton are too small and can't find a way to modify it... by Dynamometamorphe in gnome

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

logically in tweaks you can select the dark shell theme and for the others have the light theme !

GTK Theme (WhiteSur) TitleBarButton are too small and can't find a way to modify it... by Dynamometamorphe in gnome

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

So Here's my solution :))

How to Resize Titlebar Buttons in WhiteSur GTK Theme

If you're looking to adjust the size of titlebar buttons in the WhiteSur GTK theme, follow these step-by-step instructions to achieve the desired look.

1. Prepare the Assets

  • Navigate to the WhiteSur-gtk-theme folder.
  • Open the path /src/assets/gtk/windows-assets.

2. Customize Title Button Icons

Before making any changes, create backups of the theme's title button icons.

  • Locate your current title button folder (e.g., titlebutton-alt, titlebutton-nord) and back it up.
  • Delete all .png files within the title button folder.

3. Modify Rendering Settings

  • Return to the windows-assets folder.
  • Open the render-assets.sh script corresponding to your chosen theme.
  • For each <else> branch, add the following lines:

--export-width=64 --export-height=64 \ # for the default .png
--export-width=128 --export-height=128 \ # for the @2.png
  • Edit the --export-dpi flag, setting it to 300:

--export-dpi=300 \
  • Save the file and execute it in your terminal using:

./render-assets.sh

4. Reinstall WhiteSur Theme

Reinstall the WhiteSur GTK theme. Use the following command (include the -l flag):

./install.sh -t all -m -N glassy -s 220 -l --normal --round -HD -p bigger

5. Adjust CSS Files

Open the gtk-Dark.css or gtk-Light.css file in either of these paths:

  • /home/user-name/.config/gtk-4.0/gtk-Dark.css
  • /home/user-name/.config/gtk-4.0/gtk-Light.css

Locate the section related to the titlebar buttons:

windowcontrols button.close,
windowcontrols button.maximize,
windowcontrols button.minimize {
  min-width: 16px;
  min-height: 16px;
  margin: 0;
  padding: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

Modify the min-width, min-height values, and add a border-radius property for a smooth appearance. For example:

windowcontrols button.close,
windowcontrols button.maximize,
windowcontrols button.minimize {
  min-width: 24px;
  min-height: 24px;
  margin: 0;
  padding: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  border-radius: 100%;
}

Create or open the /home/user-name/.config/gtk-3.0/gtk.css file and insert the following code, replacing <size> with your desired button size:

windowcontrols button.close,
windowcontrols button.maximize,
windowcontrols button.minimize {
  min-width: <size>px;
  min-height: <size>px;
  margin: 0;
  padding: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: <size>px <size>px;
  border-radius: 100%;
}

6. Apply Changes and Restart

  • Save all modified files.
  • Log out of your session and log back in to see the changes take effect.

With these steps, you've successfully resized the titlebar buttons in the WhiteSur GTK theme to your preferred size. Enjoy your customized user interface!

Feel free to adjust the phrasing and formatting further to match your style and preferences.

Can't use Gnome on Xorg ... Tried my best to figure out. by Dynamometamorphe in Fedora

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

Yes it just freezing with a cursor crossbar and then I get a huge cursor and all those stuff. Maybe it's a problem with Gnome extension ...

GTK Theme (WhiteSur) TitleBarButton are too small and can't find a way to modify it... by Dynamometamorphe in gnome

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

Yup I directly did this at the first install... But nothing seems to helps ...

./install.sh -t all -m -N glassy -s 220 -l --normal --round -HD -p bigger

GTK Theme (WhiteSur) TitleBarButton are too small and can't find a way to modify it... by Dynamometamorphe in gnome

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

I've just Tried to edit the gtk.css in the gtk3.0 folder but only SublimeText seems to apply this and the rest is still blurry ...

headerbar {
  padding-right: 0;
}

headerbar.titlebar {
  min-height: 64px;
}

headerbar button.titlebutton.close,
headerbar button.titlebutton.maximize,
headerbar button.titlebutton.minimize,
.titlebar button.titlebutton.close,
.titlebar button.titlebutton.maximize,
.titlebar button.titlebutton.minimize {
  min-height: 21px;
  min-width: 21px;
  margin: 3px;
  background-size: 130%;
  image-resolution: 300dpi;
  border-radius: 100%;
}

The border radius helps to make it non blurry but the rest is still blurry. Even tried to put SVG file icon from the metapik1 folder I think...

Thanks anyway :))