Thumbnail Grid [Merged Into KDE]

Kwin Switching Layouts by Zren 41 comments

After a recent update in KDE Neon, KDE changed which "skin" was used. When I went into System Settings to try and select this skin again, it wasn't listed in the drop down list.

To fix this, I deleted:
~/.local/share/kwin/tabbox/kpluginindex.json

Then I closed and opened System Settings back up, and Thumbnail Grid was listed again. - Jan 28 2018
Event Calendar

Plasma 5 Calendars by Zren 707 comments

Did you restart plasmashell after updating to v51 (easiest way is to relog)? - Jan 10 2018
Event Calendar

Plasma 5 Calendars by Zren 707 comments

Go to Settings > Calendar > Event Badge: Bottom Bar (Event Color)
https://i.imgur.com/3eBZOhh.png - Jan 10 2018
TodoList

Plasma 5 Applets by Zren 85 comments

The Desktop Theme in the System Settings controls the widget looks. - Dec 01 2017
TodoList

Plasma 5 Applets by Zren 85 comments

So it was already installed? Well at least it works. Sorry for the bad instructions, I'll update the description. - Dec 01 2017
TodoList

Plasma 5 Applets by Zren 85 comments

What about "sudo apt install plasma-widgets-addons". Looks like they broke the package into smaller ones a while ago. - Dec 01 2017
TodoList

Plasma 5 Applets by Zren 85 comments

Have you done a "sudo apt update" yet? Sometime you need to fetch the list of packages first after a brand new install. - Dec 01 2017
TodoList

Plasma 5 Applets by Zren 85 comments

You typed it incorrectly. It's plasma-addONS, not plasma-addINS. - Dec 01 2017
NoBorder Firefox When Maximized

Kwin Scripts by Zren 14 comments

Good catch. Missed that condition. Turns out it's not currently possible to detect if the window is maximized when the window is created (as far as I can tell). So I need to fix that first. https://bugs.kde.org/show_bug.cgi?id=387097 - Nov 19 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

Screenshot? - Oct 31 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

Yep, you did find a bug! Thanks for reporting it. - Oct 17 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

What's your time format in Event Calendar's settings?
If you have an "AP" or "ap" in the format, it will use the 12h clock. Eg: "h:mm ap"
If you do not have the "ap", it will use the 24h clock. - Oct 17 2017
Win7 Volume Mixer

Plasma 5 Multimedia by Zren 58 comments

This widget uses plasma-pa (pulseaudio)'s libraries (plasma's default volume widget). It requires pulseaudio. If you want alsa only, I think you could use kmix still. - Oct 16 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

Sorry, I don't see a way to send a http request using the proxy settings using QML's JavaScript, I'd probably need to do something with a C++ plugin, which won't happen (since I want the widget easy to install). - Oct 16 2017
Win7 Show Desktop [Plasma 5]

Plasma 5 Applets by Zren 56 comments

I use KDE Neon, so that's unlikely. Did you first install v2 (which is designed for KDE 5.6 and below) first. If you did, you need to ininstall that version, then install the latest (now v7), then relog. It doesn't apply the update until you relog.

If it's still not working, can you explain what specifically is not working? - Sep 18 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

Seems like it comes with Frameworks 5.18. Guess I'll reupload eventcalendar v47 for people still using the Kubuntu LTS.

You should honestly be using at least Plasma 5.8 though since it's the first "stable" release of Plasma which has Long Term Support. Look into the Kubuntu Backports PPA (or an updated distro). - Jul 18 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

What version of plasma frameworks do you have? That API function was added in Plasma Framework 5.19. - Jul 13 2017
Present Windows Button

Plasma 5 Applets by Zren 34 comments

If its already checked in the system settings > uncheck it > hit apply > check it > hit apply before rebooting. - Jul 10 2017
Present Windows Button

Plasma 5 Applets by Zren 34 comments

Hmmm. Is it persistent if you enable the effect via System Settings > Desktop Behaviour > Desktop Effects? Maybe my checkboxes are doing something incorrect. - Jul 10 2017
Present Windows Button

Plasma 5 Applets by Zren 34 comments

You can now change the icon in v4. Sorry it took so long. - Jul 08 2017
Present Windows Button

Plasma 5 Applets by Zren 34 comments

Ah, good idea. Added that to v3. - Jun 22 2017
Soda Dark [Thin Titlebar]

Yakuake Skins by Zren 12 comments

If Get Hot New Stuff is acting up, download the zip from the KDE Store, then unzip it at:

~/.local/share/yakuake/kns_skins/

So that you have ~/.local/share/yakuake/kns_skins/sodadark-thintitlebar/tabs.skin - Jun 20 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

Ah, lock your widgets. - Jun 12 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

> How do you add events to dates that are in the future (as in not this month)

Ah, good point. I should probably make a clickable button for every single day in the visible month. Forget why I didn't do this initially, probably because of a bug I fixed. Anyways, it's in v47. - Jun 10 2017
Thumbnail Grid [Merged Into KDE]

Kwin Switching Layouts by Zren 41 comments

1+2. This is a bug with KWin. The QML layouts do not recieve any key press events, so we can't do anything when the arrow keys / "close key" is pressed.
https://bugs.kde.org/show_bug.cgi?id=374287

3. This is done by kwin intentionally to make quick presses faster, since it won't need to draw a popup window. It does look at a config key in ~/.config/kwinrc though.

kwriteconfig --file ~/.config/kwinrc --group TabBox --key DelayTime 0
qdbus org.kde.KWin /KWin reconfigure

4. I don't see any hidden config keys that will enable this feature in KWin. None of the other layout support this right? So you'd need to make a feature request to KWin. I don't see any open requests:

https://bugs.kde.org/buglist.cgi?component=tabbox&list_id=1442048&order=bug_id%20DESC&product=kwin&query_format=advanced

So we need to make a new request here:
https://bugs.kde.org/enter_bug.cgi?product=kwin&component=tabbox
- Jun 05 2017
Thumbnail Grid [Merged Into KDE]

Kwin Switching Layouts by Zren 41 comments

1+2. Arrow keys seem to be ignored. I've no idea how to make the popup capture keyboard events or take focus.
https://bugs.kde.org/show_bug.cgi?id=374287

3. This is an intentional delay by kwin so that quick presses don't get slowed down by showing a popup window. KWin does have a way to get rid of the delay by editing ~/.config/kwinrc file though.

kwriteconfig --file ~/.config/kwinrc --group TabBox --key DelayTime 0
qdbus org.kde.KWin /KWin reconfigure

4. This is another KWin feature request I think. I don't see any hidden config keys in the source.
https://github.com/KDE/kwin/blob/master/tabbox/tabbox.cpp

So we need to file a feature request. I only have 1 screen so this would be hell for me to develop & test.

I don't see an existing request:
https://bugs.kde.org/buglist.cgi?component=tabbox&list_id=1442048&order=bug_id%20DESC&product=kwin&query_format=advanced

So you'll need to submit a new one here:
https://bugs.kde.org/enter_bug.cgi?product=kwin&component=tabbox - Jun 01 2017
Tiled Menu [Plasma 5]

Plasma 5 Menus by Zren 316 comments

v15 should fix the sidebar folder shortcuts to use localized paths. Tell me if it doesn't. - May 31 2017
Tiled Menu [Plasma 5]

Plasma 5 Menus by Zren 316 comments

Do you still have the translation somewhere? It expired before I managed to work on it. - May 31 2017
Arch Linux Update Notifier

Plasma 5 Applets by harriseldon 3 comments

I assume it's just easier to install this widget via AUR anyways though right? - May 26 2017
Arch Linux Update Notifier

Plasma 5 Applets by harriseldon 3 comments

Note, you need metadata.desktop to be at ../plasmoids/org.kde.pacman.updatenotifier/metadata.desktop, right now it's extracting to the wrong place. - May 26 2017
Tiled Menu [Plasma 5]

Plasma 5 Menus by Zren 316 comments

It's /usr/share/locale/pt_BR/ so you need to capitalize the BR. - May 16 2017
Tiled Menu [Plasma 5]

Plasma 5 Menus by Zren 316 comments

Put it in the ~/.local/share/plasma/plasmoids/com.github.zren.tiledmenu/locale/ directory, then run the install script command above. - May 16 2017
Tiled Menu [Plasma 5]

Plasma 5 Menus by Zren 316 comments

What version of plasma-workspace? Is it 5.9.95 (the beta for 5.10)?
What version is plasma-framework? - May 16 2017
Tiled Menu [Plasma 5]

Plasma 5 Menus by Zren 316 comments

Uncheck "Fixed Size" under "Panel Icon" in the config. - May 15 2017
Tiled Menu [Plasma 5]

Plasma 5 Menus by Zren 316 comments

The tile icons? - May 15 2017
Tiled Menu [Plasma 5]

Plasma 5 Menus by Zren 316 comments

You installed the plasma 5.6 - plasma 5.8 version of the widget. You need to uninstall that version and install the plasma 5.9 version. Then you need to restart plasmashell (easiest way is to relog). - May 15 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

In order to resize a desktop widget, while widgets are unlocked, click and hold the widget till a "bar" along the right side shows up. You can then click and drag the top right.

https://streamable.com/813ts

I think I'll change a few things so the initial experience is better when used as a desktop widget. - May 14 2017
TodoList

Plasma 5 Applets by Zren 85 comments

v5 lets your drag items. I had to sacrifice the ability to filter/hide completed events though. "completing" and item will now delete it too. I added a scrollbar too. - May 07 2017
Sticky Window Snapping

KWin Scripts by Flupp 104 comments

I modified your script slightly for personal use. I made it not sticky windows unless they split the entire screen, and not stick when the windows originally touch the edge of the screen.

https://github.com/Zren/kwin-script-sticky-window-snapping/commit/fb71809b065969b8c67077bcfa2af790a954a571 - May 03 2017
Google Task - web - obsoleted

Plasma 5 Applets by suli 13 comments

Oh cool, maybe we could even inject a stylesheet based of the color scheme.
Maybe even inject a refresh button into the bottom row that calls window.location.reload() or whatever it is. - May 02 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

Hmmm, reproduced it. I'll upload a fix by tomorrow.
- Apr 26 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

police? As in the font size? Have you relogged since updating to v45? - Apr 26 2017
MX Theme

Plasma Themes by overhaulin23 16 comments

Please change X-KDE-PluginInfo-Name=default to X-KDE-PluginInfo-Name=MXTheme as it conflicts with the defaults set by breeze. This causes most themes to break since "default" is used as a fallback when other theme don't contain an svg. This breaks other themes which were designed to fallback to breeze.

If this affects you, delete ~/.local/share/plasma/desktoptheme/default - Apr 24 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

Ah, I've managed to reproduce it. I thought Српски was ru (Russian), but it's sr (Serbian). Changing it to Русский (which is ru) lets me reproduce the bug. I'm not 100% sure how to fix this though.

Changing it to sr does fix it, but can you read that? - Apr 20 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

What county / language? Russian?
This? https://i.imgur.com/7jQnSyE.png

Huh, looks like the russian locale (Cyrillic?) doesn't have the button.
https://calendar.google.com/calendar/render?hl=ru

But the english locale does.
https://calendar.google.com/calendar/render?hl=en
- Apr 20 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

Click the down arrow next to create - Apr 20 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

Does entering "2017-4-25 Test2" into the quick add form on the website place it on apr 20? - Apr 20 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

So you do this https://i.imgur.com/jDWj0OO.png and it shows up on Apr 20? - Apr 20 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

"25 APR Test" and "2017-4-25 Test 21:58-22:58" both work for me (placed on apr 25). The new event form is basically the same as the one on the website, except it adds "2017-6-30 " in front of your input (assuming the date you selected was june 30th). Google used the second date instead of the first.

https://i.imgur.com/bJy8QFF.png - Apr 20 2017
Event Calendar

Plasma 5 Calendars by Zren 707 comments

The "editor" was for another plasma widget I was writing (a battery monitor). It was too complicated so I never added it to "event calendar". - Apr 07 2017