Gerald Chen
Gerald Chen
I managed to get a solution for Fcitx5 users. 我有了一个对Fcitx5用户有用的解决方案。 For some reason I found that running shell command in Helix cannot set variables so I write the fcitx5 state...
> I managed to get a solution for Fcitx5 users. > > 我有了一个对Fcitx5用户有用的解决方案。 If you happens to be a fcitx5-rime user, I managed to come up with a new solution...
Hi all! I saw the icon problem and thought maybe I could offer some thoughts, though I am not a designer. 16px icons should have 1px line width and 2px...
It seems to be related to svg masks, according to [a thread on Affinity forum](https://forum.affinity.serif.com/index.php?/topic/141104-svg-file-opening-with-blacked-out-background/) about a similar issue. I removed all elements of the icon in Inkscape but it...
Oh, I need to embed a stylesheet in the icon, according to the [KDE community wiki](https://community.kde.org/Guidelines_and_HOWTOs/Icon_Workflow_Tips#Embedding_stylesheets_in_SVGs). I'll open a new PR for the icon.
[NeoChat](https://github.com/search?q=repo%3AKDE%2Fneochat%20tray&type=code) (a matrix client by KDE) implemented dynamic tray icon. They put the tray icon at `/usr/share/icons/hicolor/scalable/apps/org.kde.neochat.tray.svg`. Their icon can dynamically change color along with system color theme in an...
Congrats on merging the Qt branch! Been away for a while, but the recent progress looks very promising. Very exited for the next major release. And seems that the tray...
Use `%cmake -DCMAKE_CXX_FLAGS='-isystem /usr/include/glib-2.0' -DCMAKE_CXX_FLAGS='-isystem /usr/lib64/glib-2.0/include'` to add glib to search paths or use `%cmake_kf6` macro instead.
I used the former one on openSUSE OBS and built successfully, but I've seen another user also succeed their build using `%cmake_kf6` even without `pkgconfig(gio-2.0)`. Here's [mine](https://build.opensuse.org/projects/home:ramdomPTM:branches:multimedia:apps/packages/easyeffects/files/easyeffects.spec?expand=1) and [their](https://build.opensuse.org/projects/home:AndnoVember:test/packages/easyeffects/files/easyeffects.spec?expand=1) spec...
I think the problem here may be that the `%cmake` macro would not include `/usr/include/glib-2.0` and `/usr/lib64/glib-2.0/include` to the search paths. So I used explicit CXX_FLAGS as a workaround. There...