You are not logged in.

#81 2024-03-23 00:18:31

shortarcflyer
Banned
Registered: 2022-04-27
Posts: 408

Re: March 2024 Screenshot Thread

I am going to try it again just to see before I quit for the day.  RebornOS with openbox wm and another wallpaper I made on playgroundai and firefox with 14 tabs open at the time.


Screenshot-2024-03-22-19-14-58.png


I use Arch BTW!  If it is not rolling, it is stagnant!
RebornOS, EndeavourOS, Archbang, Artix,
Linuxhub Prime, Manjaro, Void, PCLinuxOS

Offline

#82 2024-03-23 00:54:45

marens
Member
From: World without M$
Registered: 2023-02-02
Posts: 827

Re: March 2024 Screenshot Thread

@shortarcflyer

Now you can edit this post with the image you want:
https://forums.bunsenlabs.org/viewtopic … 79#p132979


If people would know how little brain is ruling the world, they would die of fear.

Offline

#83 2024-03-23 01:11:40

shortarcflyer
Banned
Registered: 2022-04-27
Posts: 408

Re: March 2024 Screenshot Thread

^ Got it, thanks!

I am finding it easier for me to use imgbb.com for my pics and screenshots than what I was using before (imgur) so I am going to stick with imgbb.com.

Last edited by shortarcflyer (2024-03-23 01:13:21)


I use Arch BTW!  If it is not rolling, it is stagnant!
RebornOS, EndeavourOS, Archbang, Artix,
Linuxhub Prime, Manjaro, Void, PCLinuxOS

Offline

#84 2024-03-23 01:20:07

Döbbie03
Resident Metalhead
From: New Zealand
Registered: 2015-09-29
Posts: 3,853

Re: March 2024 Screenshot Thread

I think img.bb has a bigger limit on image size compared to Imgur as well.


"All we are is dust in the wind, dude"
                                       - Theodore "Ted" Logan
"Led Zeppelin didn't write tunes that everybody liked, they left that to the Bee Gees."
                                       - Wayne Campbell

Offline

#85 2024-03-23 01:39:48

marens
Member
From: World without M$
Registered: 2023-02-02
Posts: 827

Re: March 2024 Screenshot Thread

shortarcflyer wrote:

^ Got it, thanks!

I am finding it easier for me to use imgbb.com for my pics and screenshots than what I was using before (imgur) so I am going to stick with imgbb.com.

No problem.

Don't forget:
https://forums.bunsenlabs.org/viewtopic … 80#p132980

and other images (imgur).


Dobbie03 wrote:

I think img.bb has a bigger limit on image size compared to Imgur as well.

I do not know.
I just know that imgur should be (temporarily) avoided.

Last edited by marens (2024-03-23 02:05:09)


If people would know how little brain is ruling the world, they would die of fear.

Offline

#86 2024-03-23 02:41:41

hhh
Gaucho
From: High in the Custerdome
Registered: 2015-09-17
Posts: 16,032
Website

Re: March 2024 Screenshot Thread

I haven't had any problems with it, but whatever. Use any hosting site you like. I just want to see the full-size scrots. tongue


No, he can't sleep on the floor. What do you think I'm yelling for?!!!

Offline

#87 2024-03-23 02:41:54

Döbbie03
Resident Metalhead
From: New Zealand
Registered: 2015-09-29
Posts: 3,853

Re: March 2024 Screenshot Thread

I deleted my account there years ago. I prefer img.bb.


"All we are is dust in the wind, dude"
                                       - Theodore "Ted" Logan
"Led Zeppelin didn't write tunes that everybody liked, they left that to the Bee Gees."
                                       - Wayne Campbell

Offline

#88 2024-03-23 02:46:31

Döbbie03
Resident Metalhead
From: New Zealand
Registered: 2015-09-29
Posts: 3,853

Re: March 2024 Screenshot Thread

Back on topic:

image.png


"All we are is dust in the wind, dude"
                                       - Theodore "Ted" Logan
"Led Zeppelin didn't write tunes that everybody liked, they left that to the Bee Gees."
                                       - Wayne Campbell

Offline

#89 2024-03-23 04:13:48

johnraff
nullglob
From: Nagoya, Japan
Registered: 2015-09-09
Posts: 12,550
Website

Re: March 2024 Screenshot Thread

marens wrote:

I know your users have reported a problem with the imgur service.
You'll probably need to modify the script you've been using so far (Thunar).

I don't think there's anything wrong with the image upload script. Thunar is only involved in that it is configured to call that script from its right-click menu, but the upload script can be called any way you want.

Imgur does seem a bit unpredictable for some people recently in how it handles direct links, but it's always worked OK for me.

If Imgur turns out to be unusable in the future there is an alternative bl-imgbb-upload script already shipped in bunsen-utilities. I haven't used it (originally written by another dev several years ago) so it might need some tweaking to get it working properly in 2024.

If any BL user want to use imgbb by default instead of imgur:

touch ~/bin/bl-image-upload
bl-text-editor ~/bin/bl-image-upload

Copy in this content:

#!/bin/bash
#
# bl-image-upload: script to upload files to an image hosting service
# Taking of screenshots is also supported.
# At present this is a wrapper script around bl-imgur-upload,
# but may be extended in the future.
# This version uses bl-imgbb-upload

hash bl-imgbb-upload 2>/dev/null || {
    echo "$0: bl-imgbb-upload is not available" >&2
    exit 1
}

bl-imgbb-upload "$@"

Make sure it's in your PATH and executable:

echo $PATH

The output should include /home/<username>/bin

chmod +x ~/bin/bl-image-upload
which bl-image-upload

The last command should return /home/<username>/bin/bl-image-upload not /usr/bin/bl-image-upload

As I said above, bl-imgbb-upload might need tweaking, so if you hit any issues, please start a new support thread. smile


...elevator in the Brain Hotel, broken down but just as well...
( a boring Japan blog (currently paused), now on Bluesky, there's also some GitStuff )

Introduction to the Bunsenlabs Boron Desktop

Offline

#90 2024-03-23 13:20:06

marens
Member
From: World without M$
Registered: 2023-02-02
Posts: 827

Re: March 2024 Screenshot Thread

johnraff wrote:

As I said above, bl-imgbb-upload might need tweaking, so if you hit any issues, please start a new support thread.

I said the same thing.
Of course, Thunar is just running the script (right-click menu).
I wanted this not to happen:

imgur.png

P.S.
I don't know what Thunar looks like today, but I found a few custom actions in my archive.
Maybe they exist now (?):

  • Checksum  (Purpose:  Thunar Custom Action. Calculates hashes)

  • Copy to …

  • Move To …

If anyone is interested, I'll open a new topic (GUI & Applications).


If people would know how little brain is ruling the world, they would die of fear.

Offline

#91 2024-03-23 13:44:38

unklar
Back to the roots 1.9
From: #! BL
Registered: 2015-10-31
Posts: 2,640

Re: March 2024 Screenshot Thread

johnraff wrote:
marens wrote:

I know your users have reported a problem with the imgur service.
You'll probably need to modify the script you've been using so far (Thunar).

I don't think there's anything wrong with the image upload script. Thunar is only involved in that it is configured to call that script from its right-click menu, but the upload script can be called any way you want.

Imgur does seem a bit unpredictable for some people recently in how it handles direct links, but it's always worked OK for me.

If Imgur turns out to be unusable in the future there is an alternative bl-imgbb-upload script already shipped in bunsen-utilities. I haven't used it (originally written by another dev several years ago) so it might need some tweaking to get it working properly in 2024.

I completely agree with @johnraff.
The imgur-upload-script is ok.

In my opinion, the error lies in the fact that the BB code does not always transmit the file extension of the image correctly. @damo has already pointed this out here:

damo wrote:

Repeat: To get the linked direct image you need make sure to add the file extension to the url.  Their recommended BB code doesn't really convey this properly.

Because the file extension '.png or .jpeg/jpg' etc. is not transmitted, I end up on the imgur main page and .png is missing here.
If I add the .png to this imgur page, the image is immediately opened in the correct size.

@marens, are you familiar with the BB code?

Offline

#92 2024-03-23 13:48:48

unklar
Back to the roots 1.9
From: #! BL
Registered: 2015-10-31
Posts: 2,640

Re: March 2024 Screenshot Thread

johnraff wrote:

As I said above, bl-imgbb-upload might need tweaking, so if you hit any issues, please start a new support thread. smile

I tried it out   wink

https://forums.bunsenlabs.org/viewtopic … 21#p133021

Last edited by unklar (2024-03-23 14:05:54)

Offline

#93 2024-03-23 15:03:46

marens
Member
From: World without M$
Registered: 2023-02-02
Posts: 827

Re: March 2024 Screenshot Thread

unklar wrote:

@marens, are you familiar with the BB code?

Of course, I use the BB code very often.


marens wrote:

I wanted this not to happen:

I posted an image of what the issues looks like when less experienced users use the script and showed them an alternative solution:
https://forums.bunsenlabs.org/viewtopic … 87#p132987


Some users have already edited their posts in a similar way.

shortarcflyer wrote:

^ Got it, thanks!

I am finding it easier for me to use imgbb.com for my pics and screenshots than what I was using before (imgur) so I am going to stick with imgbb.com.


If people would know how little brain is ruling the world, they would die of fear.

Offline

#94 2024-03-23 15:40:45

PackRat
jgmenu user Numero Uno
Registered: 2015-10-02
Posts: 2,611

Re: March 2024 Screenshot Thread

Windows 10, Gnome, Plasma (Wayland and X11) were thrashing the CPU on the old Toshiba laptop. Xfce4 is working pretty well.

KPQPAhkq_t.png


You must unlearn what you have learned.
    -- yoda

Offline

#95 2024-03-24 00:23:34

ututo
Member
Registered: 2015-09-29
Posts: 326

Re: March 2024 Screenshot Thread

sexy gaps!


BunsenLabs on deviantArt
Don't touch my git!

Offline

#96 2024-03-24 01:13:21

hhh
Gaucho
From: High in the Custerdome
Registered: 2015-09-17
Posts: 16,032
Website

Re: March 2024 Screenshot Thread

ututo wrote:

Thanks! Hyprland, I've been doing some work on it...

scrot.png

@PackRat, I wouldn't mind at all if Xfce was the only DE available on linux and everybody just worked on development there.

-edit- @ututo, after looking again at my GNOME scrot that you linked, I've bumped my Hyprland gaps up to 8px from 5. tongue You're right, 8 is the sexy sweet spot for this screen resolution.

Yeah, I hate how imgbb formats its thumbnails, what is that hack cropping? /rhetorical question

Last edited by hhh (2024-03-24 01:21:05)


No, he can't sleep on the floor. What do you think I'm yelling for?!!!

Offline

#97 2024-03-25 06:52:11

Döbbie03
Resident Metalhead
From: New Zealand
Registered: 2015-09-29
Posts: 3,853

Re: March 2024 Screenshot Thread

image.png


"All we are is dust in the wind, dude"
                                       - Theodore "Ted" Logan
"Led Zeppelin didn't write tunes that everybody liked, they left that to the Bee Gees."
                                       - Wayne Campbell

Offline

#98 2024-03-25 11:38:07

shortarcflyer
Banned
Registered: 2022-04-27
Posts: 408

Re: March 2024 Screenshot Thread

Void xfce DE.

Screenshot-2024-03-25-06-12-22.jpg

Last edited by shortarcflyer (2024-03-25 11:39:04)


I use Arch BTW!  If it is not rolling, it is stagnant!
RebornOS, EndeavourOS, Archbang, Artix,
Linuxhub Prime, Manjaro, Void, PCLinuxOS

Offline

#99 2024-03-25 14:21:57

unklar
Back to the roots 1.9
From: #! BL
Registered: 2015-10-31
Posts: 2,640

Re: March 2024 Screenshot Thread

456319343_2024-03-25-150636_1920x1080_scrot.png

Another attempt with image hoster  smile

2024-03-25-152857-1920x1080-scrot.png

Last edited by unklar (2024-03-25 14:31:33)

Offline

#100 2024-03-25 16:22:47

hhh
Gaucho
From: High in the Custerdome
Registered: 2015-09-17
Posts: 16,032
Website

Re: March 2024 Screenshot Thread

@Dobbie, bitchin' wall! And again, I love your compositor (picom?) settings.

@unklar, is that your first dk WM scrot here? Sweet.


No, he can't sleep on the floor. What do you think I'm yelling for?!!!

Offline

Board footer

Powered by FluxBB