[systemsettings] [Bug 482943] Missing setting for notification sounds

2024-05-17 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=482943

Eddie J Carswell II  changed:

   What|Removed |Added

 CC||eddiecarswel...@yahoo.com

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

[dolphin] [Bug 406725] Allow folders to be excluded for thumbnail generation

2024-04-20 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=406725

--- Comment #14 from Eddie J Carswell II  ---
I think polluting the metadata of the files in question would be an annoying
side effect. Ideally, we could just use a config file for this.

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

[dolphin] [Bug 455645] Tooltip frequently covers filenames when it appears

2024-03-30 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=455645

--- Comment #12 from Eddie J Carswell II  ---
In addition, the tooltip could allow you to click "through" it to dismiss it.
Often I'm moving the mouse to interact with an adjacent file, but the tooltip
stubbornly stays in the way. Allowing the user to click through it and reach
the file it's obscuring would be useful. That, and maybe when the cursor leaves
the "hitbox" of the file the tooltip was spawned for, it should be dismissed.
These would make tooltips less annoying, as I find them to be useful/annoying
in equal measure currently.

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

[frameworks-kio] [Bug 478457] kioslave5 process causes high IOwait and hangs dolphin when browsing SMB share with hundreds of media files

2023-12-19 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=478457

--- Comment #17 from Eddie J Carswell II  ---
Well thanks for looking into this. I'll see if that patch improves things when
it ends up in the repos.

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

[frameworks-kio] [Bug 478457] kioslave5 process causes high IOwait and hangs dolphin when browsing SMB share with hundreds of media files

2023-12-16 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=478457

--- Comment #13 from Eddie J Carswell II  ---
(In reply to Eddie J Carswell II from comment #12)
> I'll attach the stdout and stderr log (apparently the debug output ended up
> in both places). During this time, I browsed a directory containing a few
> dozen twitch stream captures. If there's anything in particular you want me
> to try or a more rigorous test, let me know.

Neglected to mention, with the smb:// protocol path, no thumbnails were
generated (as expected), and when I browsed via the mount path after, kioslave5
happily generated thumbnails during this time (without putting undue pressure
on the system, thanks to the wrapper). I do notice that the thumbnail
generation is a bit slower, but still acceptable.

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

[frameworks-kio] [Bug 478457] kioslave5 process causes high IOwait and hangs dolphin when browsing SMB share with hundreds of media files

2023-12-16 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=478457

--- Comment #12 from Eddie J Carswell II  ---
(In reply to Harald Sitter from comment #8)
> You've basically taken away the CPU weight from all KIO IO by doing this.

Ah I see, I've tweaked it to only impact the thumbnail task:

> $ cat /usr/libexec/kf5/kioslave5
> #!/bin/sh
> [ $2 != "thumbnail" ] && exec $0.orig "$@" || exec nice -n 19 ionice -c 3 
> $0.orig "$@"

That should minimize any side effects of this hack.

(In reply to Harald Sitter from comment #9)
> After some research I'm even less convinced of this. From what I can tell
> cifs is not subject to any IO scheduling what with being network based. IO
> scheduling only comes into play when the request is routed into a block
> device. cifs communication directly goes out into the network stack and
> would be subject to the queuing discipline, which seems not interested in
> IOPRIO. Perhaps this actually makes all perfect sense. We request a PNG to
> create a preview, cifs is happy to oblige and issues (multiple concurrent?)
> network requests, the remote is dreadfully slow and iowaiting on its disk,
> translating to us iowaiting on the network sockets coming back with the
> data. I can kind of replicate this by cgroup limiting smbd IO, but even with
> very aggressive limits my system stays responsive. So, I'm rather thinking
> there is a problem with your kernel/configuration.

Hmm do you have any ideas on what would be impacting this? I'm running Fedora
stock kernel 6.6.6-100.fc38.x86_64 and the scheduling settings are default, as
far as I can tell.

> Indeed, you are accessing it through the file:// protocol. That makes it
> inherently local.

I suppose I'll just have to deal with that behavior then, or probably set a
file size limit acceptable for local and remote files.

> I have the suspicion that this has to do with why things are misbehaving for
> you to begin with. smb:// is performing close to the same transfer speed as
> windows, if it doesn't for you that points at a problem elsewhere.

Straight transfer speed was not the main issue. Aside from being unable to use
the protocol path outside of KDE programs (e.g. terminal), there was also the
slower response times enumerating directories, moving/renaming files, and
sometimes dolphin would even go unresponsive for a few seconds.

I tested a file transfer with the fstab mount and using smb:// and the
throughput was similar. The transfer speed sending a ~1GB video file to the
server via mount path was 60s (+20s for server IO to settle), and protocol path
was 45s (+40s for server IO to settle). Pulling that file took 22s via mount
path and 35s via protocol path (in both cases writing to an NVMe, waiting for
all IO to settle between).

To remove the disks from the equation, I mounted a ramdisk at both ends and did
the test again. Download from the mount path was 20s, protocol path 30s. Upload
to the mount path was 40s, protocol path was 50s. So closer numbers this time.
It appears to me that in cases where both ends are nearly idle, they aren't
that different, but when the server is under higher IO loads, the mount seems
to behave better (more responsive, doesn't put the server under as high an IO
load).

> Perhaps let's get our ducks in a row
>
> What's the output of

> $  tc qdisc show
> qdisc noqueue 0: dev lo root refcnt 2
> qdisc noqueue 0: dev wlan0 root refcnt 2
> qdisc fq_codel 0: dev enp10s0u1u2 root refcnt 2 limit 10240p flows > 1024 
> quantum 1514 target 5ms interval 100ms memory_limit 32Mb ecn > drop_batch 64
> qdisc noqueue 0: dev virbr0 root refcnt 2
> qdisc noqueue 8005: dev vnet4 root refcnt 2
> $  ls -lah "$(qtpaths --plugin-dir)/kf5/thumbcreator"
> total 752K
> drwxr-xr-x.  2 root root 4.0K Nov 28 06:55 .
> drwxr-xr-x. 21 root root 4.0K Nov 13 06:50 ..
> -rwxr-xr-x.  1 root root  44K Nov 13 19:00 audiothumbnail.so
> -rwxr-xr-x.  1 root root  28K Nov 13 19:00 blenderthumbnail.so
> -rwxr-xr-x.  1 root root  40K Nov 13 19:00 comicbookthumbnail.so
> -rwxr-xr-x.  1 root root  20K Nov 13 19:00 cursorthumbnail.so
> -rwxr-xr-x.  1 root root  32K Nov 13 19:00 djvuthumbnail.so
> -rwxr-xr-x.  1 root root  44K Nov 13 19:00 ebookthumbnail.so
> -rwxr-xr-x.  1 root root  32K Nov 13 19:00 exrthumbnail.so
> -rwxr-xr-x.  1 root root  81K Nov 13 19:00 ffmpegthumbs.so
> -rwxr-xr-x.  1 root root  32K Nov 24 19:00 fontthumbnail.so
> -rwxr-xr-x.  1 root root  77K Nov 13 19:00 gsthumbnail.so
> -rwxr-xr-x.  1 root root  24K Nov 13 19:00 imagethumbnail.so
> -rwxr-xr-x.  1 root root  32K Nov 13 19:00 jpegthumbnail.so
> -rwxr-xr-x.  1 root root  20K Nov 13 19:00 kraorathumbnail.so
> -rwxr-xr-x.  1 root root  41K Nov 13 19:00 mltpreview.so
> -rwxr-xr-x.  1 root root  20K Nov 13 19:00 mobithumbnail.so
> -rwxr-xr-x.  1 root root  28K Nov 13 19:00 opendo

[frameworks-kio] [Bug 478457] kioslave5 process causes high IOwait and hangs dolphin when browsing SMB share with hundreds of media files

2023-12-16 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=478457

--- Comment #11 from Eddie J Carswell II  ---
Created attachment 164240
  --> https://bugs.kde.org/attachment.cgi?id=164240=edit
debug log from dolphin

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

[frameworks-kio] [Bug 478457] kioslave5 process causes high IOwait and hangs dolphin when browsing SMB share with hundreds of media files

2023-12-16 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=478457

--- Comment #10 from Eddie J Carswell II  ---
Created attachment 164239
  --> https://bugs.kde.org/attachment.cgi?id=164239=edit
debug log from dolphin

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

[frameworks-kio] [Bug 478457] kioslave5 process causes high IOwait and hangs dolphin when browsing SMB share with hundreds of media files

2023-12-14 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=478457

--- Comment #7 from Eddie J Carswell II  ---
After putting a wrapper around it, it seems to behaving itself quite nicely.
Thumbnail generation is somewhat slower, but it doesn't seem problematic
anymore. I had it using idle priority in this case, but I could test it with
other combinations.

> $  cat /usr/libexec/kf5/kioslave5
> #!/bin/sh
> exec nice -n 19 ionice -c 3 $0.orig "$@"
> $  ll /usr/libexec/kf5/kioslave5*
> -rwxr-xr-x. 1 root root51 Dec 14 23:23 /usr/libexec/kf5/kioslave5
> -rwxr-xr-x. 1 root root 16088 Oct  9 20:00 /usr/libexec/kf5/kioslave5.orig

We're back to single digit iowait now even with the thumbnail generation
running on a large remote directory.

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

[frameworks-kio] [Bug 478457] kioslave5 process causes high IOwait and hangs dolphin when browsing SMB share with hundreds of media files

2023-12-14 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=478457

--- Comment #6 from Eddie J Carswell II  ---
(In reply to Harald Sitter from comment #5)
> If it is the system io wait that is high, then how can you tell it's
> kioslave5 causing it?
> 
> Also, how are you measuring this?

The system iowait percentage is normally less than 1% on my system, sometimes
reaching higher in the single digits when doing tasks. I only see really high
numbers when I do something like write a 10GB+ file with no throttling (dd and
friends) or when some process is misbehaving. You can see this value with `top`
as `wa` and with `iostat` as `iowait`.

> It is certainly weird, but from what you describe your problem seems to be
> more with the kernel and its io scheduler than with kioslave5. The solution
> here really shouldn't be don't-do-IO - that's like saying don't turn your
> computer on, then you also don't have io wait.

The issue is not so much trying to stop IO, but ensuring it doesn't put undue
load (pressure?) on the rest of the system while doing it's job.

> idle priority unfortunately won't work because it is subject to starvation.
> Users do expect previews to be generated eventually.

Then perhaps somewhat higher but still less than normal priority? Like best
effort priority 7? I still think it shouldn't have the default priority of best
effort 0. Anything lower than the default would ensure it yields to other
processes with the default or higher priority, yet won't face starvation like
idle might.

> We jump through the file as a matter of fact, it's fairly cheap. There
> already is a setting for disabling previews on remotes, the sequence
> generation isn't nearly expensive enough to justify yet another setting.

Ah, found that setting. It doesn't seem to account for filesystems mounted via
fstab unfortunately. Not sure how much extra work it would be to check if we're
traversing a mount point not connected via a local block device. And I've found
performance using `smb://` in dolphin to be worse than just using an fstab
automount, which is why I have it setup that way.

> How do you rename the file? Via dolphin or terminal?

This was done in dolphin, both renaming and moving video files. I haven't
tested the behavior with a terminal rename. Would that be useful?

> When you have directory previews enabled, then yes it'd naturally have to
> create previews for the first couple files in subdirectories. Otherwise not.

I don't suppose there's an option I'm missing to disable directory previews so
they only generate on files in the current directory? Then I can avoid certain
folders when browsing via dolphin to ensure they don't trigger this issue. It
would be nice to have a way to filter specific paths (maybe even with
wildcards) from preview generation, but that's already requested in bug 406725.

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

[frameworks-kio] [Bug 478457] kioslave5 process causes high IOwait and hangs dolphin when browsing SMB share with hundreds of media files

2023-12-13 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=478457

--- Comment #4 from Eddie J Carswell II  ---
(In reply to Harald Sitter from comment #3)
> > no high CPU/IOwait/Network from kioslave5 (media previews still working)
> 
> You may need to explain this expectation in greater detail. How do you
> reconcile remote-IO-without-wait-time with having to access remote data, as
> would be the case during preview generation? At face value there's always an
> unknown amount of wait time, because we don't know network throughput and
> latency, and then remote drive throughput and latency. Or put simply: the
> only way not to wait is to not read data; when reading data we need to wait
> for the IO.

I meant the overall system IOwait percentage seems to get rather high
(sometimes over 30%) and can sometimes cause other processes to stutter and
lag. My main system drive is an NVMe (LVM on LUKS) so it's rather odd that
kioslave could be causing that much of an issue. I haven't messed with any
kernel parameters or changed the scheduler settings from stock Fedora defaults
here. I'll also note that it's not network bandwidth being the issue, but the
disk read speed of the remote server (spinning rust, also see high iowait when
I checked it during the issue) that causes the local iowait for kioslave.

It also seems weird to me that being bottlenecked on IO to a network filesystem
can still cause visible lag for other processes only doing local IO, unless
there's a shared IO pipeline for all mounted filesystems? Not sure why that is
happening exactly. Either way, reducing the process IO priority could be
helpful here (like maybe idle priority) to reduce the impact.

> > A naive analysis would seem to suggest there are less invasive and resource 
> > intensive ways to generate media previews
> 
> Such as?

I haven't looked at the code, so my suggestions are based on observed behavior.

- I've already mentioned lowering IO priority so it doesn't push out other
processes. I feel that this would be a workload perfectly suited to running at
idle priority, since its an ancillary function that shouldn't impair the
primary functionality of the program (being a file browser).
- Is there anything we can do to reduce the amount of reading necessary to
generate a thumbnail for a video file? Presumably we'd only need to look for
the first few keyframes and stop there. Reducing the per-file IO helps
immensely with large file counts.
- I also notice that hovering will show a mini preview slideshow, so the
program is probably reading a lot further into the file to grab those
thumbnails. Maybe this behavior could be made tunable "disable deep thumbnail
generation" or something. Maybe it should be off by default for non-local
files.
- I mentioned in another comment that renaming or moving a file seems to
invalidate the thumbnail and trigger another generation. Could we link the
generated thumbnails with a more persistent identifier? File hash may not be
useful since that requires reading the file. Maybe the inode? I'm not sure if
an equivalent to inodes would even exist for SMB (NFS does expose persistent
inodes).
- Is this process descending automatically to child directories to be more
thorough? That makes even browsing the level above a large video directory
problematic, and it doesn't seem to quit when I'm no longer in the vicinity of
that directory tree.

Also, if better profiling, metrics, or debugging would be helpful, let me know
what to add.

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

[dolphin] [Bug 453499] Wayland tooltip obscures file icon

2023-12-12 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=453499

Eddie J Carswell II  changed:

   What|Removed |Added

 CC||eddiecarswel...@yahoo.com

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

[dolphin] [Bug 455645] Tooltip frequently covers filenames when it appears

2023-12-12 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=455645

Eddie J Carswell II  changed:

   What|Removed |Added

 CC||eddiecarswel...@yahoo.com

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

[dolphin] [Bug 406725] Allow folders to be excluded for thumbnail generation

2023-12-12 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=406725

Eddie J Carswell II  changed:

   What|Removed |Added

 CC||eddiecarswel...@yahoo.com

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

[kdemultimedia] [Bug 423544] "Skip previews for local files above:" feature doesn't work with video files

2023-12-12 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=423544

Eddie J Carswell II  changed:

   What|Removed |Added

 CC||eddiecarswel...@yahoo.com

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

[frameworks-kio] [Bug 478457] kioslave5 process causes high IOwait and hangs dolphin when browsing SMB share with hundreds of media files

2023-12-12 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=478457

--- Comment #2 from Eddie J Carswell II  ---
Also I see it's not just generating a static preview thumbnail, but rather a
whole GIF/slideshow preview of the file. Is there a way to make this
configurable to only do a single static preview image per file?

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

[frameworks-kio] [Bug 478457] kioslave5 process causes high IOwait and hangs dolphin when browsing SMB share with hundreds of media files

2023-12-12 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=478457

--- Comment #1 from Eddie J Carswell II  ---
Additional observations: renaming a file will trigger the problem again, as
will opening the same folder in a split, though it was already open and showing
thumbnails. Maybe there's some stable reference to use other than the filename
to save effort here? And a better way of linking already generated previews to
files to cause less IO when (re)opening a folder?

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

[frameworks-kio] [Bug 478457] New: kioslave5 process causes high IOwait and hangs dolphin when browsing SMB share with hundreds of media files

2023-12-12 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=478457

Bug ID: 478457
   Summary: kioslave5 process causes high IOwait and hangs dolphin
when browsing SMB share with hundreds of media files
Classification: Frameworks and Libraries
   Product: frameworks-kio
   Version: 5.111.0
  Platform: Fedora RPMs
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: kio-bugs-n...@kde.org
  Reporter: eddiecarswel...@yahoo.com
CC: kdelibs-b...@kde.org
  Target Milestone: ---

SUMMARY

Whenever I browse to my media share, the kioslave5 process cause dolphin to be
nearly unresponsive (or in some cases, completely unresponsive) due to high CPU
and IOwait, presumably due to the attempt to generate thumbnail previews of the
media files contained on the share. For reference, this share has hundreds of
video files. One may also notice significant network bandwidth usage as the
kioslave5 process is reading through all these files.

This makes attempting to browse this share and do anything useful a rather
difficult task until that process is finally done with whatever its doing and
stops chewing up resources (and it sometimes never stops until I kill dolphin).
Similar behavior can be observed with a local media file when said file is
still being written to while dolphin/kioslave5 is presumably trying to read it.
Every update to the file seems to trigger an endless loop of re-reading the
file.

These are both (to me, at least) pointing to issues with how kioslave5 is
handling media files. It should never be able to cause high IOwait and grind
the system to a halt, nor cause unnecessary network IO to do its tasks. A naive
analysis would seem to suggest there are less invasive and resource intensive
ways to generate media previews, maybe with better caching of the results, a
longer refresh time before trying again, etc.

STEPS TO REPRODUCE
1. Mount a SMB share with a large number of media files (videos, etc.)
2. Ensure the preview pane is enabled (seems to be a contributor)
3. Browse the share with dolphin and attempt operations like rename, etc.

OBSERVED RESULT

Observe high IOwait and/or CPU from kioslave5 process and potential lag from
dolphin.

EXPECTED RESULT

Dolphin remains responsive, no high CPU/IOwait/Network from kioslave5 (media
previews still working).

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Fedora 38
KDE Plasma Version: 5.27.9
KDE Frameworks Version: 5.111.0
Qt Version: 5.15.11
Dolphin: 23.08.3

ADDITIONAL INFORMATION

Log snippet when the issue occurs:

```
Dec 12 17:30:54 AfroThundr-XPS kioslave5[203579]: libpng warning: iCCP: known
incorrect sRGB profile
Dec 12 17:30:55 AfroThundr-XPS kioslave5[203579]: libpng warning: iCCP: known
incorrect sRGB profile
Dec 12 17:30:55 AfroThundr-XPS kioslave5[203579]: libpng warning: iCCP: known
incorrect sRGB profile
Dec 12 17:30:55 AfroThundr-XPS kioslave5[203579]: libpng warning: iCCP: known
incorrect sRGB profile
Dec 12 17:30:55 AfroThundr-XPS kioslave5[203579]: libpng warning: iCCP: known
incorrect sRGB profile
Dec 12 17:30:55 AfroThundr-XPS kioslave5[203579]: libpng warning: iCCP: known
incorrect sRGB profile
Dec 12 17:30:56 AfroThundr-XPS kioslave5[203579]: Not a JPEG file: starts with
0x89 0x50
Dec 12 17:30:56 AfroThundr-XPS kioslave5[203579]: libpng warning: iCCP: known
incorrect sRGB profile
Dec 12 17:31:10 AfroThundr-XPS chatterino[3453]: libpng warning: iCCP: known
incorrect sRGB profile
Dec 12 17:31:21 AfroThundr-XPS kioslave5[203579]: libpng warning: iCCP: known
incorrect sRGB profile
Dec 12 17:31:21 AfroThundr-XPS kioslave5[203579]: libpng warning: iCCP: known
incorrect sRGB profile
Dec 12 17:31:21 AfroThundr-XPS kioslave5[203579]: libpng warning: iCCP: known
incorrect sRGB profile
Dec 12 17:31:22 AfroThundr-XPS kioslave5[203579]: libpng warning: iCCP: known
incorrect sRGB profile
Dec 12 17:31:22 AfroThundr-XPS kioslave5[203579]: libpng warning: known
incorrect sRGB profile
Dec 12 17:31:22 AfroThundr-XPS kioslave5[203579]: libpng warning: profile
matches sRGB but writing iCCP instead
Dec 12 17:31:30 AfroThundr-XPS kioslave5[203579]: Not a JPEG file: starts with
0x89 0x50
Dec 12 17:31:30 AfroThundr-XPS kioslave5[203579]: libpng warning: iCCP: known
incorrect sRGB profile
Dec 12 17:31:31 AfroThundr-XPS kioslave5[203579]: libpng warning: iCCP: known
incorrect sRGB profile
Dec 12 17:31:31 AfroThundr-XPS kioslave5[203579]: libpng warning: iCCP: known
incorrect sRGB profile
Dec 12 17:31:31 AfroThundr-XPS kioslave5[203579]: libpng warning: iCCP: known
incorrect sRGB profile
Dec 12 17:31:31 AfroThundr-XPS kioslave5[203579]: Not a JPEG file: starts with
0x89 0x50
Dec 12 17:31:31 AfroThundr-XPS kioslave5[203579]: Not a JPEG file: starts with
0x89 0x50
Dec 12 17:31:31 AfroThundr-XPS kioslave5[203579]: Not a JPEG file: starts with
0x89 0x50
Dec 12 17:31:31 AfroThundr-XPS kioslave5[203579]: Not a 

[konsole] [Bug 437791] konsole window 1 line height when there is no konsolesrc

2021-06-04 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=437791

Eddie J Carswell II  changed:

   What|Removed |Added

 CC||eddiecarswel...@yahoo.com

--- Comment #6 from Eddie J Carswell II  ---
Rex Dieter, reverting only the commit in Comment 3 puts konsole into a state
where the new toolbar exists, but the UI options to configure it are missing
(e.g. no menu option to hide it). Perhaps reverting the commit in Comment 5
would be a better approach?

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

[konsole] [Bug 373232] Horizontal lines with fractional HiDPI scaling

2020-07-24 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=373232

Eddie J Carswell II  changed:

   What|Removed |Added

 CC||eddiecarswel...@yahoo.com

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

[konsole] [Bug 411121] New: Provide options to configure the split header bars in the new split view

2019-08-20 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=411121

Bug ID: 411121
   Summary: Provide options to configure the split header bars in
the new split view
   Product: konsole
   Version: 19.08.0
  Platform: Debian testing
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: split-view
  Assignee: konsole-de...@kde.org
  Reporter: eddiecarswel...@yahoo.com
  Target Milestone: ---

SUMMARY

First off, I'm glad the new split view finally landed with 19.08.0, so thanks
for that. There is certainly room for improvement of  this feature, however.
(Isn't there always?)

The new title bars that appear on each split view can take up a lot of screen
real estate when there are a lot of splits. This is the main reason I configure
the tab bar to be hidden and use the keyboard to navigate tabs instead.

We need a similar option for hiding the split view header. This would allow for
splits to be completely "headless" and not take up space with a bulky header
bar on each one. We also need proper shortcuts for navigating splits like we do
with tabs (Bug 43).

The options could be to show/hide the header, or to change its size for those
who just want it smaller. Maybe even an option to only show it on a view when
the mouse is hovering near its the top?

These two changes would make this feature much more usable and support a larger
variety of workflows (especially for those who like to use the keyboard and
don't like unnecessary UI elements cluttering their terminals).



STEPS TO REPRODUCE

1. Open konsole
2. Make some split views
3. Look for option to hide split headers

OBSERVED RESULT

Split view headers are not configurable.

EXPECTED RESULT

Split view headers should be configurable.


SOFTWARE/OS VERSIONS

KDE Frameworks 5.54.0
Qt 5.11.3 (built against 5.11.3)
The xcb windowing system

ADDITIONAL INFORMATION

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

[konsole] [Bug 178320] Konsole split view: in both views same content

2019-08-20 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=178320

Eddie J Carswell II  changed:

   What|Removed |Added

 CC||eddiecarswel...@yahoo.com

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

[konsole] [Bug 411113] Please add keyboard shortcuts for navigating between konsole splits

2019-08-20 Thread Eddie J Carswell II
https://bugs.kde.org/show_bug.cgi?id=43

Eddie J Carswell II  changed:

   What|Removed |Added

 CC||eddiecarswel...@yahoo.com

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