Namen und Rufzeichen, Nachtrag

Wie angekündigt habe ich in den gängigen Internetportalen für Rufzeichen usw. nun meinen Vornamen geändert. Sicherlich habe ich noch das ein oder andere vergessen, zudem wird es vermutlich dauern bis die Änderung überall hin übernommen wurde. Für entsprechende Hinweise bin ich natürlich dankbar…

Leider weigert sich der DARC, mich intern als Frau zu führen, obwohl rein rechtlich nichts dagegen spricht und sogar ärztliche Unterlagen mit Diagnose F64.0 vorliegen. Die Änderung wird also wohl erst in einem Zug mit jener gegenüber der Bundesnetzagentur stattfinden können.

Namen und Rufzeichen

Wenn der Name eines Funkamateurs nicht mit dem Callbook übereinstimmt, dann handelt es sich entweder um Rufzeichenmissbrauch, oder das Rufzeichen hat seinen Inhaber gewechselt. So war es auch bei meinem aktuellen Rufzeichen, DJ6DP, dessen vorheriger Inhaber Wilhelm leider im Jahr 2011 verstorben ist.

Nun ändert sich der zum Rufzeichen gehörende Name erneut, aber die Person dahinter bleibt dieselbe. Der Grund dafür ist schnell erklärt: Vor ca. einem Jahr habe ich mir eingestanden, dass ich eine Frau bin, und bin seitdem auf dem Weg zu einem Leben als solche. Dabei bin ich mittlerweile an dem Punkt angelangt, an dem ich nichts mehr verheimlichen, sondern überall in der richtigen Identität leben und auftreten möchte.

Daher werde ich in Kürze in den gängigen Rufzeichenlisten sowie gegenüber dem DARC meinen Namen entsprechend ändern. Der offizielle Gerichtsbeschluss und somit auch die Änderung gegenüber der Bundesnetzagentur folgt dann wahrscheinlich im Lauf des aktuellen Jahres.

Zwar hatte ich überlegt, mein Rufzeichen ebenfalls zu wechseln, doch sehe ich keinen Grund dafür. Anders als die meisten Vornamen ist ein Rufzeichen schließlich geschlechtslos und ich kann mich damit nach wie vor identifizieren.

vy 73
Daria, DJ6DP

One way to fix the „panel not clickable“-issue in Cinnamon.

When it comes to operating systems, my preferred choice is the popular Linux Mint with either MATE or Cinnamon as the desktop environment. Recently, Mint 18 has been released, so I already upgraded two of my machines running Mint. Everything went fine with the first one (using MATE) – something I was not used to when I still ran stock Ubuntu, which seemed to always break something with an upgrade.

However, the second machine (using Cinnamon) had one small but very nasty bug after the upgrade: The panel wasn’t clickable anymore. It seemed to work just fine (as in „not crashing“), but didn’t respond to any mouse clicks. A quick search around the web showed that this bug apparently has ocurred in the past already – and should long be fixed. I suppose that there are several possible errors which lead to this behaviour. Since I could neither find any current posts about this topic nor a fix like mine, here’s what I did:

First I tried to log in with a different user (with an empty home directory) – the panel worked just fine, so it was clear that *something* in the config files in my home directory must have been messed up. After trying a lot of different things I could isolate the error to ~/.config/dconf. This directory contains (at least in my case) one binary file, which is roughly similar to the registry on MS Windows. At this point, I can’t restrain myself from asking why the f*** someone would want to take one of the biggest flaws from one operating system and implement it into another. Argh!

Anyway, to edit that binary file you need to install the package dconf-editor. I assume you know how to do that. Since you need to at least launch a terminal although your panel is dysfunctional, I should add that – at least in my case – the applications menu still worked when opened using the Super key (the one that usually has a Windows logo on it). If that doesn’t work for you, using ssh -X might be an option. Or you could somehow create a launcher on your desktop.

In the dconf-editor, you need to find the value desktop.ibus.panel.show. On my computer, it was set to 2 – setting it to 0 immediately solved the problem. There is probably also a fancy command-line only way to do this.

I must admit that I do not completely understand what went wrong in the first place, yet the fact that it seems – in my case – to be related to IBus explains why there aren’t more people with the same issue right now, which could be expected on a popular Linux distribution with a popular desktop environment: As far as I know, IBus isn’t installed by default. The reason I have it installed is probably related to the input method for Japanese. (Don’t ask…)

Figuring this out took me some time, so I wanted to share my solution, hoping I can save other people some time. 🙂