Search found 1565 matches

by BruceSteers
Wednesday 29th November 2023 9:44am
Forum: Beginners
Topic: Astra linux
Replies: 8
Views: 18718

Re: Astro linux

AAAH sorry, i looked at the title that said "Astro linux" , a linux for astrology. that is based on linux mint. But reading again i noticed you say Astra not Astro in the message. Astra being the popular Russian replacement for M$ windows. Astra is Debian based. The launchpad method above ...
by BruceSteers
Tuesday 28th November 2023 7:50pm
Forum: Beginners
Topic: Astra linux
Replies: 8
Views: 18718

Re: Astro linux

Looks like it is LinuxMint based.

EDIT: this comment was about "Astro" linux not "Astra" ,
for Astra linux see the next post.
by BruceSteers
Monday 27th November 2023 5:33pm
Forum: Component Showcase
Topic: DBus notify as a Message alternative
Replies: 1
Views: 4197

Re: DBus notify as a Message alternative

I have made a few changes to this... I removed Title as the first argument for all commands and went more the Message.class route. Now there is DBMessage.Title property which by default it is Application.Name but you can set DBMessage.Title before calling DBMessage to use a different one. After call...
by BruceSteers
Monday 27th November 2023 3:26pm
Forum: The Gambas IDE
Topic: Gambas -> USB -> DragonRise USB Joystick -> Use
Replies: 7
Views: 13550

Re: Gambas -> USB -> DragonRise USB Joystick -> Use

vuott wrote: Monday 27th November 2023 3:10pm :? A loophole is always possible.
Haha , yep that's true :)
by BruceSteers
Monday 27th November 2023 1:46pm
Forum: The Gambas IDE
Topic: Gambas -> USB -> DragonRise USB Joystick -> Use
Replies: 7
Views: 13550

Re: Gambas -> USB -> DragonRise USB Joystick -> Use

The gambas IDE does not support joysticks
:roll:

there has been talk about joysticks on other more relevant forum topics but the IDE does not have any joystick features.
by BruceSteers
Sunday 26th November 2023 3:14pm
Forum: Component Showcase
Topic: DBus notify as a Message alternative
Replies: 1
Views: 4197

DBus notify as a Message alternative

I have made a class that can be used almost the same as Message.class. Only it does not open a modal window it uses DBus notifications. It works a bit different to Message so here is what to consider if you want to use DBMessage not Message... The notification is not a Modal window so it will not lo...
by BruceSteers
Sunday 26th November 2023 3:52am
Forum: General
Topic: DBus notify images
Replies: 2
Views: 7253

Re: DBus notify images

So I figured something out. I was trying my code with the icon name "question" thinking that was a stock icon name. I was wrong and the stock icon i was looking for was called dialog-question :-\ So it turns out you can add icons by simply giving a icon name., i think the available icon na...
by BruceSteers
Saturday 25th November 2023 9:35pm
Forum: General
Topic: DBus notify images
Replies: 2
Views: 7253

Re: DBus notify images

I'm making an alternative to Message.class that uses DBus notify This is it in action.. Screenshot at 2023-11-25 21-14-54.png really need to be able to make images show though. Currently i have DBMessage.Info() and DBMessage.Question() but want images to enable others like Error. DBMessage.Question(...
by BruceSteers
Saturday 25th November 2023 4:05pm
Forum: General
Topic: DBus notify images
Replies: 2
Views: 7253

DBus notify images

Has anyone managed to use the "icon" property when using DBus DesktopPortal.Notify ? I've tried various methods I've read the docs here https://docs.flatpak.org/en/latest/portal-api-reference.html#gdbus-method-org-freedesktop-portal-Notification.AddNotification icon v Serialized icon (see ...
by BruceSteers
Wednesday 22nd November 2023 7:04pm
Forum: General
Topic: Using gambas in bash scripts
Replies: 2
Views: 6998

Re: Using gambas in bash scripts

I have done the following... Removed all the test code below the # <End define commands> part so it is just the definitions and saved it as $HOME/gbst . Now in any script i can just " source " the file and start to use it's functions Like this for example... #!/usr/bin/env bash source ~/gb...