Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
73 views

Let's say we have a desktop file: [Desktop Entry] ... Name=Firefox Icon=firefox ... It says Icon=firefox; where is the firefox icon?
AlwaysNur's user avatar
1 vote
0 answers
63 views

I am currently trying to connect to the Screensaver Signal (org.freedesktop.ScreenSaver - /ScreenSaver - ActiveChanged(bool)) that is emitted when the Screen-Saver is closed: $ dbus-monitor "...
Gerrit Addiks's user avatar
1 vote
1 answer
353 views

I'm experimenting with DBus in an attempt to understand the Desktop Notifications Specification. At the latter link I read that the method Notify has this signature UINT32 org.freedesktop....
Enlico's user avatar
  • 30.2k
3 votes
1 answer
586 views

I am trying to debug a weird icon problem for my Linux app. When I search for the app in the application menu it shows the right icon but when I run the app itself the icon is broken (it shows the ...
hugomg's user avatar
  • 70.4k
0 votes
0 answers
257 views

I'm writing a GUI application using Python and Qt. In this application I want to "decorate" dialogs and output data with theme icons like document-open or dialog-error. This is easily ...
ajlittoz's user avatar
  • 454
1 vote
2 answers
2k views

Im running the command such as following and this command broadcasts the video to ethernet port. But here is my question that how I can add overlay onto video where overlay values are stored in shared ...
muradaltay's user avatar
2 votes
1 answer
120 views

I have a chromebook, with chromeos installed and linux activated. I have the following files: /usr/share/applications/experiment.desktop: [Desktop Entry] Name=Experiment GenericName=Experiment Exec=/...
keppla's user avatar
  • 31
4 votes
1 answer
670 views

I want to list all the available block devices in the system using a dbus implementation called zbus. The UDisks2 documentation mentions a method call on org.freedesktop.UDisks2.Manager interface ...
noconst's user avatar
  • 699
1 vote
0 answers
205 views

I'm having a problem with DBus usage. I'm trying to get a notification bubble with a few action buttons up and running. So far, I've been able to get the bubble to show with retValue = await ...
Stefan Steiger's user avatar
2 votes
1 answer
2k views

I have a GUI application that I want to install per-user in a FreeDesktop-compliant manner. Reading the relevant specifications, it seem that a '.desktop' file should be placed in ~/.local/share/...
Tenders McChiken's user avatar
0 votes
1 answer
55 views

The bigger goal: Writing a batch user manager targeted at classroom school environments. The problem I want to write a user manager that uses a GUI to add, manage and delete users for classroom ...
enaut's user avatar
  • 439
-1 votes
1 answer
800 views

I added a new Gnome menu option to launch a custom script application. I am using Redhat 6, Gnome 2. This is all working but when it launches in a new terminal window I cannot get the title to display ...
invalid entry's user avatar
1 vote
1 answer
377 views

I'm developing a media player with Vala and I want to be able to open audio files with this application (once it is installed). In .descktop files I added the following MIME types to indicate which ...
bcedu's user avatar
  • 158
0 votes
1 answer
496 views

I've consulted the following articles and many more, but still don't understand one question -- What menu hierarchy do freedesktop (or Ubuntu or any modern distro) use? Where can I get a list of ...
xpt's user avatar
  • 23.6k
0 votes
2 answers
2k views

I try to set system time using Qt through DBus in the following way: #include <QDBusConnection> #include <QDBusInterface> #include <QDBusMessage> #include <QDebug> #include &...
Gluttton's user avatar
  • 6,038
0 votes
1 answer
179 views

I am trying to make a xlib traybar for X11 where it embeds the tray icons using XEMBED as described in the tray specs. However when I close the application with the tray icon it just removes it from ...
WebFreak001's user avatar
  • 2,593
3 votes
0 answers
1k views

Qt supports the icon theme lookup by returning a QIcon. But for my QML view I need the icon path instead of a QIcon. Is there a way to get either the path from the looked up icon or to do a lookup ...
ManuelSchneid3r's user avatar
7 votes
1 answer
2k views

I would like to send desktop notifications through D-BUS using https://crates.io/crates/dbus. My current approach is: let c = Connection::get_private(BusType::Session).unwrap(); //let m = ...
hoodie's user avatar
  • 193
5 votes
3 answers
2k views

I'm trying to follow XDG directory specification on my Java application. I have already used it for application data: protected String getDefaultDataDir() { String rootPath = System.getenv("...
Flamma's user avatar
  • 298
1 vote
1 answer
3k views

I have created a new .desktop shortcut in LXDE, and added that shortcut to the "Application Launch Bar". I can drag a file onto the shortcut, and the filename will be passed to a script successfully. ...
alfadog67's user avatar
  • 851
6 votes
1 answer
2k views

I am working on a project where I need to inhibit power management (e.g. suspend) programatically. I am able to do so perfectly from Python: import dbus pm = dbus.SessionBus().get_object("org....
piedar's user avatar
  • 2,751
2 votes
1 answer
3k views

I am trying to create and install package (.deb & .rpm too) for an application I am developing, using CMake and CPack. The package gets created nice and well, however I don't get an entry in the ...
Ferenc Deak's user avatar
  • 35.6k
4 votes
3 answers
6k views

I need to detect user's language and country code in Qt. That codes must be matching standards at http://standards.freedesktop.org/desktop-entry-spec/latest/ar01s04.html. I've tried QLocale, but it ...
Ivan Akulov's user avatar
  • 4,333
2 votes
2 answers
2k views

void device_added() { printf("Added \n"); g_main_loop_quit (loop); } void device_removed() { printf("Removed\n"); g_main_loop_quit (loop); } int main (int argc, char **argv) { ...
123456's user avatar
  • 81
31 votes
1 answer
28k views

My program requires an environment variable as part of one of its parameters: myprogram --folder=$HOME/.special However, if I put this into a .desktop file's exec line, it doesn't work: Exec=...
Scott Ritchie's user avatar