[frameworks-baloo] [Bug 402154] Baloo reindexes everything after every reboot when using BTRFS filesystem

2023-06-07 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=402154

--- Comment #59 from Peter Hoeg  ---
There has been nothing official from KDE about this patch getting merged, so
it’s too early to say anything about which release it will be in.

That being said, we will start carrying this in NixOS as it is a huge step up
on the user experience front for anyone on btrfs.

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-baloo] [Bug 402154] Baloo reindexes everything after every reboot when using BTRFS filesystem

2023-05-22 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=402154

--- Comment #56 from Peter Hoeg  ---
(In reply to André M from comment #52)
> I've been testing the patch on NixOS on kf 5.106, and it's working great

FWIW, I've been running with this patch for some time now (also on NixOS) and
it works beautifully with btrfs on dm-crypt on LVM on NVMe.

-- 
You are receiving this mail because:
You are watching all bug changes.

[krunner] [Bug 340283] please add possibility to sort results returned by krunner by type

2023-04-16 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=340283

--- Comment #61 from Peter Hoeg  ---
I'm not sure what the best way is to move this forward is - and if we possibly
should be splitting this into multiple tickets since there are multiple issues
(although obviously related).

1. the ordering of groups
   a. statically, or
   b. with weights
2. the ordering of items within groups
   a. statically, or
   b. with weights
3. issues with the "smarts" where the automatic ordering doesn't seem to
actually take use frequency into consideration

What's the best way forward from here?

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-baloo] [Bug 402154] Baloo reindexes everything after every reboot when using BTRFS filesystem

2023-03-20 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=402154

Peter Hoeg  changed:

   What|Removed |Added

 CC||pe...@hoeg.com

--- Comment #47 from Peter Hoeg  ---
This might be *slightly* off-topic, but here's a hacky workaround that I can
live until this is properly fixed.

1. run baloo as a systemd service which has been (io)niced as much as possible
2. use `ExecStartPre` to run a script that checks if the device id of
$HOME/.config has changed and if so, blow away the baloo index and rebuild.

This means that after most restarts, it will be about 20 minutes before
everything has been indexed, but that's totally acceptable (for me).

This is the script:

```
#!/usr/bin/env bash

set -eEuo pipefail

STAT_FILE=$XDG_CACHE_HOME/baloo.state
test -f $STAT_FILE || touch $STAT_FILE

if [ "$(stat --format='%Hd,%d' $HOME/.config)" != "$(cat $STAT_FILE)" ]; then
echo "Device number changed. Resetting baloo index"
balooctl suspend
balooctl disable
pkill -9 baloo_file || true
balooctl purge
balooctl enable
balooctl suspend
stat --format='%Hd,%d' $HOME/.config > $STAT_FILE
fi

# in case it was started outside systemd
pkill -9 baloo_file || true
```

-- 
You are receiving this mail because:
You are watching all bug changes.

[kde] [Bug 464824] GTK don't follow global font configuration

2023-02-13 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=464824

Peter Hoeg  changed:

   What|Removed |Added

 CC||pe...@hoeg.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[kdeplasma-addons] [Bug 463345] Bing POTD is usually out of sync by one day

2023-01-10 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=463345

--- Comment #9 from Peter Hoeg  ---
Good point. Something like: on every start and every hour at 5 minutes past the
hour to accommodate clock-skew/delays.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kdeplasma-addons] [Bug 463345] Bing POTD is usually out of sync by one day

2023-01-09 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=463345

--- Comment #7 from Peter Hoeg  ---
>From the original bug report:

> The POTD wallpaper plugin checks for new wallpaper at 12:00 AM localtime. 
> Bing’s Picture of the Day updates at a fixed time each day (possibly 12:00 AM 
> PST, would need to confirm this).

So basically, the plugin needs to *ignore* the local timezone and always run at
whatever point in time Bing changes + some buffer (5 minutes?)

-- 
You are receiving this mail because:
You are watching all bug changes.

[kdeplasma-addons] [Bug 463345] Bing POTD is usually out of sync by one day

2023-01-08 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=463345

Peter Hoeg  changed:

   What|Removed |Added

 CC||pe...@hoeg.com

--- Comment #5 from Peter Hoeg  ---
The mentioned MR does not address the timezone issue.

-- 
You are receiving this mail because:
You are watching all bug changes.

[krunner] [Bug 340283] please add possibility to sort results returned by krunner by type

2022-12-07 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=340283

--- Comment #49 from Peter Hoeg  ---
> I still think that extending the logic of boosting the relevance of frequently
> launched to pushing the ranking of a category as a whole would solve this use 
> case

There are other use cases that it will not address so maybe we should try to
map out the use cases first?

1. Because I use krunner as the main application launcher, I want applications
to show first no matter what,

2. I rarely open a directory from krunner, but often open files, so I want a
partial file match to show before an exact folder match. Frequency of use of
the file doesn’t matter - it’s always files before folders.

3. I have had to disable the “Command Line” plugin because it would often match
short words and thus rise to the top, but it would be convenient to still have
around if I had the option to always put it at the end of the result list.

4. I rarely use browser tab switcher but it’s nice enough to have around. But
it often rises to the top despite me *very* rarely actually selecting a tab
this way.

Please don’t misunderstand the “I want” part - I’m not demanding anything, just
outlining the use-case.

And the thing is - these are all personal preferences so no amount of smarts is
really going to be able to suit people’s individual preferences and workflows
when we are talking about “I *always* want this to happen first, no
exceptions”.

Lastly, can I just say that krunner in general is phenomenal. We are firmly in
the “nice to have” territory when it comes to this feature request.

-- 
You are receiving this mail because:
You are watching all bug changes.

[krunner] [Bug 340283] please add possibility to sort results returned by krunner by type

2022-12-05 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=340283

--- Comment #47 from Peter Hoeg  ---
> best for me is: First applications. And then at some point 
> recently used files. Never ever the other way around. 

This is exactly my experience/wish as well. 

And even if I have a partial match on an application, I would rather have that
as the first option compared to an exact match for anything else.
Going further down the line, I would also like a partial match for a file
before an exact match for a browser tab as an example. 

krunner has become smarter over the years, but I quite frankly don’t really
need it to be smart. Just follow an order/priority I specify. And other people
are of course very likely to have different priorities.

-- 
You are receiving this mail because:
You are watching all bug changes.

[krunner] [Bug 340283] please add possibility to sort results returned by krunner by type

2022-12-04 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=340283

Peter Hoeg  changed:

   What|Removed |Added

 CC||peterh...@gmail.com

--- Comment #43 from Peter Hoeg  ---
All the hard work that goes into making the krunner and thus the returned
results better help of course. But that doesn't change the fact that having the
option to say "I don't give a hoot what krunner thinks I want or what I have
clicked in the the past - I want applications to be returned first followed by
local files no matter what" would be incredibly helpful.

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 461496] When changing a song, the app's icon is displayed for a split second

2022-11-30 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=461496

Peter Hoeg  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---
 CC||peterh...@gmail.com

--- Comment #5 from Peter Hoeg  ---
On 5.26.4.1, one case seems to be fixed, but the problem still persists in a
few other cases.

In the following "audio player" refers to the strawberry player.

*This is working*

1. start player
2. open the media tray icon
3. the player icon is *not* shown, only the album art, which as per my
understanding is what the references commit handles

*This is not working*   

1. start playing an item on an album
2. open the media player tray icon
3. click the next button in the media tray popup
4. the strawberry icon is flashed before the song starts playing


And this:

1. start playing an item on an album
2. open the media player tray icon
3. pin the media player tray popup
3. click the next button in strawberry
4. the strawberry icon is flashed before the song starts playing

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-baloo] [Bug 353874] Baloo does not remove deleted files from index

2022-11-01 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=353874

Peter Hoeg  changed:

   What|Removed |Added

 CC||peterh...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[Breeze] [Bug 461045] New: Feature Request - suport theming qt6 applications under Plasma 5

2022-10-26 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=461045

Bug ID: 461045
   Summary: Feature Request - suport theming qt6 applications
under Plasma 5
Classification: Plasma
   Product: Breeze
   Version: 5.26.2
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: plasma-b...@kde.org
  Reporter: peterh...@gmail.com
CC: uhh...@gmail.com
  Target Milestone: ---

SUMMARY

It would be great if Qt6 applications run under Plasma 5 would use the same
look n' feel as Qt5 applications.

Several projects have started releasing qt6 versions of their software but they
all look terrible under Plasma 5 as they don't look at all like their qt5
counterparts - presumably because the Plasma 5 themes simply do not support
qt6.

Having this in, would likely get more people to start using the qt6 versions of
various pieces of software which would be a great way to ensure that things are
working well when plasma 6 lands.

STEPS TO REPRODUCE
1. launch a qt6 application (such as Strawberry)

OBSERVED RESULT
It doesn't follow the theme of the plasma environment / doesn't look like
strawberry-qt5.

EXPECTED RESULT
Should look identical to the qt5 versions.


SOFTWARE/OS VERSIONS
Linux/KDE Plasma: NixOS unstable
KDE Plasma Version: 5.26.1
KDE Frameworks Version: 5.99
Qt Version: 5.15.6

ADDITIONAL INFORMATION
I understand why you may not want to spend resources on something that is only
expected to be used for a short period of time, but assuming Plasma 5 will
stick around for a while, it will give those users a nicer experience as more
and more projects switch to qt6.

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasma-pass] [Bug 459051] New: Feature Request - compatibility with passage

2022-09-13 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=459051

Bug ID: 459051
   Summary: Feature Request - compatibility with passage
   Product: plasma-pass
   Version: unspecified
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: wishlist
  Priority: NOR
 Component: General
  Assignee: dvra...@kde.org
  Reporter: peterh...@gmail.com
  Target Milestone: ---

SUMMARY

passage is a fork of pass that supports using age rather than GPG as the
backend. 

The passage binary supports the same arguments as pass, so it would be great if
plasma-pass could do the following:

1. support configuring which binary to call (pass or passage)
2. defer all operations to the binary instead of manually meddling around with
GPG

EXPECTED RESULT

plasma-pass to work exactly the same way as it does today for pass but with
passage instead.


SOFTWARE/OS VERSIONS
Linux/KDE Plasma:  NixOS w/ 5.25.4
KDE Plasma Version: 5.25.4
KDE Frameworks Version: 5.97
Qt Version: 5.15.5

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 367666] Add option to change wallpaper for lock screen, login screen, and desktop all at once

2022-07-11 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=367666

Peter Hoeg  changed:

   What|Removed |Added

 CC||peterh...@gmail.com

--- Comment #8 from Peter Hoeg  ---
There are other ways to work around this.

You can use the plasma-apply-wallpaperimage to set the desktop at least across
all desktops in one go.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Breeze] [Bug 448877] kde-gtk-config doesn't work as expected when switching preferred color scheme.

2022-04-14 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=448877

Peter Hoeg  changed:

   What|Removed |Added

 CC||peterh...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[systemsettings] [Bug 448044] GTK apps do not change colors when switching Global Themes that specify color schemes

2022-03-30 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=448044

Peter Hoeg  changed:

   What|Removed |Added

 CC||peterh...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[Breeze] [Bug 421745] The color scheme of gtk3 apps is not immediately updated when I change the global theme. Plasma session needs to be restarted.

2022-03-30 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=421745

Peter Hoeg  changed:

   What|Removed |Added

 CC||peterh...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 449957] KWin crash in KWin::PlacementArea() when turning off or unplugging monitor

2022-03-24 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=449957

Peter Hoeg  changed:

   What|Removed |Added

 CC||peterh...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 435415] Notifications appear in task manager and steal focus

2021-05-27 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=435415

--- Comment #6 from Peter Hoeg  ---
Thanks for the details. Work continues on the mentioned github issue - it has
to do with the window class and how we wrap things on NixOS.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 435415] Notifications appear in task manager and steal focus

2021-05-05 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=435415

--- Comment #4 from Peter Hoeg  ---
I am not at all asking for anyone to do the actual work - it would just be
super helpful with some pointers regarding where to start looking considering
I'm not at all familiar with the plasma code.

Also found this which sounds like it could be related:

https://community.kde.org/Plasma/Notifications#DesktopEntry_in_notifyrc

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 435415] Notifications appear in task manager and steal focus

2021-04-14 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=435415

--- Comment #3 from Peter Hoeg  ---
Any suggestions as to where to start digging to find out what is causing this?

-- 
You are receiving this mail because:
You are watching all bug changes.

[minuet] [Bug 379272] Unable to compile minuet on NixOS

2021-04-14 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=379272

Peter Hoeg  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #4 from Peter Hoeg  ---
At least as of 20.12.2 and Qt 5.15.2 it's fine again.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 435415] Notifications appear in task manager and steal focus

2021-04-06 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=435415

--- Comment #2 from Peter Hoeg  ---
I have set my notifications to appear in the bottom right of the left screen
with a vertical panel on the left. The notifications appear as expected.

The krunner pop-down also appears correctly from the top (haven't tried with
the floating krunner).

But now that you mention it, I do remember seeing a few other popups (like the
volume) control showing in the top left, where they definitely didn't belong.
When I mention notifications, I mean the ones you can send with `notify-send` -
they are the biggest issue due to the focus steal.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 435415] New: Notifications appear in task manager and steal focus

2021-04-06 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=435415

Bug ID: 435415
   Summary: Notifications appear in task manager and steal focus
   Product: kwin
   Version: 5.21.3
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: minor
  Priority: NOR
 Component: wayland-generic
  Assignee: kwin-bugs-n...@kde.org
  Reporter: peterh...@gmail.com
  Target Milestone: ---

SUMMARY

This is most probably not a kwin bug per se, but rather a consequence of how
things on NixOS are quite different from other distributions.

The problem we are seeing with wayland is that notifications and krunner are
treated as first-class windows and therefore appear in the task manager (not a
big issue) and also take focus (very annoying with notifications). There are
not errors in the journal that to shed any light on this.

It's probably because nixos is different, so any pointers to where to look
would be much appreciated.

STEPS TO REPRODUCE
1. Install latest nixos unstable
2. Run plasma wayland
3. Trigger krunner (or wait for a notification to appear)

OBSERVED RESULT

Notice an icon in the task manager or the focus being on a notification.

EXPECTED RESULT

Notifications should not have focus and not appear in the task manager.


SOFTWARE/OS VERSIONS
Linux: 5.11.10
KDE Plasma Version: 5.21.3
KDE Frameworks Version: 5.79 (5.80 will be arriving shortly and then tested as
well - I will update this ticket then)
Qt Version: 5.15.2

ADDITIONAL INFORMATION

https://github.com/NixOS/nixpkgs/issues/118650

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 434683] Wayland only - Secondary display doesn't come back on after disconnecting and reconnecting

2021-03-30 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=434683

Peter Hoeg  changed:

   What|Removed |Added

 CC||peterh...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 433265] XKB options set in the Keyboard KCM sometimes stop working on Wayland

2021-03-26 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=433265

--- Comment #15 from Peter Hoeg  ---
This sounds very similar to https://bugs.kde.org/show_bug.cgi?id=422329 which
was reported in June 2020.

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kglobalaccel] [Bug 422329] kglobalaccel has issue with modifiers when using options for keyboard layout

2021-03-26 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=422329

Peter Hoeg  changed:

   What|Removed |Added

 CC||peterh...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[systemsettings] [Bug 433225] Meta key shortcut to open Kickoff does not respect XKB keyboard layout changes

2021-03-26 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=433225

Peter Hoeg  changed:

   What|Removed |Added

 CC||peterh...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 422038] Plasma Alt- & Super- shortcuts malfunction when both left and right Alt key are configured by XKB

2021-03-26 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=422038

Peter Hoeg  changed:

   What|Removed |Added

 CC||peterh...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[systemsettings] [Bug 433813] Using "Caps lock is also ctrl" XKB settings in keyboard KCM sometimes causes key released events to not fire when releasing caps lock key

2021-03-26 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=433813

Peter Hoeg  changed:

   What|Removed |Added

 CC||peterh...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[systemsettings] [Bug 432818] Use libxkbregistry to parse the rules files

2021-03-26 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=432818

Peter Hoeg  changed:

   What|Removed |Added

 CC||peterh...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 433265] XKB options set in the Keyboard KCM sometimes stop working on Wayland

2021-03-26 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=433265

Peter Hoeg  changed:

   What|Removed |Added

 CC||peterh...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-baloo] [Bug 419302] Dolphin search/baloo shows a lot of duplicates

2020-11-18 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=419302

Peter Hoeg  changed:

   What|Removed |Added

Summary|Dolphin search shows a lot  |Dolphin search/baloo shows
   |of duplicates   |a lot of duplicates

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-baloo] [Bug 429283] New: baloosearch returns duplicate results

2020-11-17 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=429283

Bug ID: 429283
   Summary: baloosearch returns duplicate results
   Product: frameworks-baloo
   Version: 5.73.0
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: stefan.bru...@rwth-aachen.de
  Reporter: peterh...@gmail.com
  Target Milestone: ---

SUMMARY

baloosearch returns duplicate results.

```sh
$ baloosearch example | grep work | grep managed
/home/peter/org/work/shared/managed_services.org
/home/peter/org/work/shared/managed_services.org
/home/peter/org/work/shared/managed_services.org
/home/peter/org/work/shared/managed_services.org
Elapsed: 2.1973 msecs
```

Almost all the files are duplicated:

```sh
$ baloosearch example | wc -l   
Elapsed: 2.20035 msecs
663

$ baloosearch example | sort -u | wc -l
Elapsed: 2.25017 msecs
202
```

STEPS TO REPRODUCE
1. enable baloo
2. let it index
3. search for something
4. notice the duplicate results

OBSERVED RESULT

```sh
$ baloosearch example | grep work | grep managed
/home/peter/org/work/shared/managed_services.org
/home/peter/org/work/shared/managed_services.org
/home/peter/org/work/shared/managed_services.org
/home/peter/org/work/shared/managed_services.org
Elapsed: 2.1973 msecs
```
EXPECTED RESULT

```sh
$ baloosearch example | grep work | grep managed
/home/peter/org/work/shared/managed_services.org
Elapsed: 2.1973 msecs
```

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: NixOS unstable
KDE Plasma Version: 5.73
KDE Frameworks Version: plasma 5.18.5
Qt Version: 5.15.0

ADDITIONAL INFORMATION

I have been observing this for a long time on multiple systems.

Wiping the local store and letting it reindex doesn't help.

-- 
You are receiving this mail because:
You are watching all bug changes.

[krusader] [Bug 427110] New: License is unclear

2020-09-29 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=427110

Bug ID: 427110
   Summary: License is unclear
   Product: krusader
   Version: 2.7.2
  Platform: Other
OS: All
Status: REPORTED
  Severity: minor
  Priority: NOR
 Component: general
  Assignee: krusader-bugs-n...@kde.org
  Reporter: peterh...@gmail.com
CC: krusader-bugs-n...@kde.org
  Target Milestone: ---

According to the LICENSE file distributed with the source, krusader is released
under GPL v2 but on the website at www.krusader.org, the link to the license
links to the GPL v3. So which one is the correct license:

 - GPL v2 only
 - GPL v2 or later
 - GPL v3 only

-- 
You are receiving this mail because:
You are watching all bug changes.

[Powerdevil] [Bug 410044] keys to adjust the screen brightness do not work on Neon unstable edition

2019-09-23 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=410044

Peter Hoeg  changed:

   What|Removed |Added

 CC||peterh...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[Breeze] [Bug 395841] New: Many FreeDesktop standard icons are missing from breeze

2018-06-24 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=395841

Bug ID: 395841
   Summary: Many FreeDesktop standard icons are missing from
breeze
   Product: Breeze
   Version: 5.13.0
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: Icons
  Assignee: visual-des...@kde.org
  Reporter: peterh...@gmail.com
CC: kain...@gmail.com
  Target Milestone: ---

This is a follow up to https://bugs.kde.org/show_bug.cgi?id=233505.

There are many standard icons defined at
https://standards.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html
missing from the breeze icon set. As an example from the "status" category, the
breeze icon set has 9 icons defined while the standard references more than 70.

-- 
You are receiving this mail because:
You are watching all bug changes.

[minuet] [Bug 379272] Unable to compile minuet on NixOS

2017-10-23 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=379272

--- Comment #2 from Peter Hoeg <peterh...@gmail.com> ---
Turns out it's not a minuet problem as such, but is caused by Qt being linked
using the gold linker:
https://github.com/NixOS/nixpkgs/pull/30305/files#diff-29285183ecf24ebb9256e396969e5c31

-- 
You are receiving this mail because:
You are watching all bug changes.

[minuet] [Bug 379272] New: Unable to compile on NixOS

2017-04-26 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=379272

Bug ID: 379272
   Summary: Unable to compile on NixOS
   Product: minuet
   Version: unspecified
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: major
  Priority: NOR
 Component: general
  Assignee: sandroandr...@kde.org
  Reporter: peterh...@gmail.com
  Target Milestone: ---

Created attachment 105214
  --> https://bugs.kde.org/attachment.cgi?id=105214=edit
CMakeOutput.log

I'm trying to package minuet for NixOS but the linking stage fails:

[ 94%] Building CXX object
src/app/CMakeFiles/minuet.dir/exercisecontroller.cpp.o
[ 96%] Building CXX object src/app/CMakeFiles/minuet.dir/qrc_qml.cpp.o
[ 96%] Built target minuetfluidsynthsoundcontroller
[ 98%] Building CXX object src/app/CMakeFiles/minuet.dir/minuet_automoc.cpp.o
[100%] Linking CXX executable minuet
/nix/store/ykpcyj4f8mpjb0hjagrnnbxh0c7m3m3n-qtquickcontrols2-5.8.0/lib/libQt5QuickTemplates2.so.5:(*IND*+0x0):
multiple definition of `_end'
/nix/store/ykpcyj4f8mpjb0hjagrnnbxh0c7m3m3n-qtquickcontrols2-5.8.0/lib/libQt5QuickTemplates2.so.5:(*IND*+0x0):
multiple definition of `_edata'
/nix/store/ykpcyj4f8mpjb0hjagrnnbxh0c7m3m3n-qtquickcontrols2-5.8.0/lib/libQt5QuickTemplates2.so.5:(*IND*+0x0):
multiple definition of `__bss_start'
collect2: error: ld returned 1 exit status
make[2]: *** [src/app/CMakeFiles/minuet.dir/build.make:296: src/app/minuet]
Error 1
make[1]: *** [CMakeFiles/Makefile2:1466: src/app/CMakeFiles/minuet.dir/all]
Error 2
make: *** [Makefile:128: all] Error 2

-- 
You are receiving this mail because:
You are watching all bug changes.

[minuet] [Bug 379272] Unable to compile minuet on NixOS

2017-04-26 Thread Peter Hoeg
https://bugs.kde.org/show_bug.cgi?id=379272

Peter Hoeg <peterh...@gmail.com> changed:

   What|Removed |Added

Summary|Unable to compile on NixOS  |Unable to compile minuet on
   ||NixOS

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasma4] [Bug 323230] windows (maximized) are going under the vertical panel on dual screen setup

2015-12-16 Thread Peter Hoeg via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=323230

Peter Hoeg <peterh...@gmail.com> changed:

   What|Removed |Added

 CC||peterh...@gmail.com

--- Comment #35 from Peter Hoeg <peterh...@gmail.com> ---
For me, this bug only triggers when the panel is placed between the monitors.
If I move it from the right side of the left screen to the left side of left
screen everything is OK. Same thing applies to the right monitor in the
inverse.

This is supposedly a limitation in X that requires panels to be flush against
an absolute edge.

-- 
You are receiving this mail because:
You are watching all bug changes.