Recent posts

September 11, 2024, 09:09:09
SOLUTION :
Il faut choisir un thème d'icônes autre que "valeur par défaut" et redémarrer gmusicbrowser.

Merci Quentin !
September 02, 2024, 11:16:10
Le bonjour !

Comme illustré ci-dessous, certains icônes de boutons ne s'affichent pas, avec gmusicbrowser 1.1.99.1 ou le dayly build, sous ubuntu 24.04 (sur Xorg) :

De plus, les menus déroulants apparaissent tronqués au premier clic.
August 31, 2024, 05:20:56
Hello,

has anyone managed to run gmusic in ubuntu 24? In my case it works only for a few seconds and then stops responding. thanks!
August 05, 2024, 14:54:26
Embrace the freedom of casual encounters on the best dating app in town!
Prettys Womans from your town
July 12, 2024, 04:18:09
Connect casually with like-minded individuals on the ultimate dating platform.
Beautiful Womans in your town
March 10, 2024, 12:55:00
I've just found the database at /home/manu/.config/gmusicbrowser/gmbrc file, but sadly no trace remains of those deleted folders :-( Maybe if I had found it sooner before the file was updated and those references deleted from the library file, I would have been able to find the album names there.
March 10, 2024, 11:43:16
Thanks. I didn't know about that tool, but as far as the files were lost many months ago, and the disk has been in use since then, most of the data will surely be overwritten by now. My main hope is to find the album names at the gMusicBrowser database and then try to get them again one by one from other sources :-/

I'll try to figure out where the database is and then open it with some external tool to take a look at the play history.
March 01, 2024, 14:12:37
Umm though I didn't need that long and actually not particularly helpful here is the full script (I'm no bash dev :D):

#!/bin/bash

# Get the PID of gmusicbrowser
pid=$(ps ax | grep 'gmusic' | awk '{print $1}' | head -n 1)

if [[ -z "$pid" ]]; then
    echo "gmusicbrowser is not running."
    exit 1
fi

gmusicWindowId=$(xdotool search --pid $pid | tail -n 2 | head -n 1)

if [[ -z "$gmusicWindowId" ]]; then
    echo "No window ID found for gmusicbrowser."
    exit 1
fi

currentWindowPid=$(xdotool getactivewindow getwindowpid)

if [[ "$currentWindowPid" == "$pid" ]]; then
    #/home/hutber/gmusicbrowser-1.1.99.1/gmusicbrowser.pl -cmd Hide
    xdotool windowunmap `echo $gmusicWindowId`
else
    xdotool windowmap `echo  $gmusicWindowId` && xdotool windowactivate $gmusicWindowId && xdotool windowfocus $gmusicWindowId
fi