Jesper Schmitz Mouridsen
Jesper Schmitz Mouridsen
> So you did compile the lxqt-panel from sources, right? Yes commit 433343ed27929dd50e74c4f24e5e8baf5f99cfaa. > Are any other plugins/widgets loaded successfully? colorpicker, showdesktop,clock,worldclock,tray, spacer,desktopswitch > ..could it be, you are trying...
> Can you, please, paste the output of something like this: `objdump -t -T -r -R /usr/local/bin/lxqt-panel | egrep '_ZNK14PluginSettings5valueERK7QStringRK8QVariant|_ZNK14PluginSettings5groupEv' | c++filt?` The output is 000000000046dab0 g F .text 0000000000000047...
Adding `set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Xlinker --export-dynamic")` to panel/CMakeLists.txt fixes it. Thanks for hint about back linking. The link.txt becomes:[link.txt](https://gist.github.com/jsm222/9980c91ae9eec043ec68e07bab182c62)
From the code ``` m_openGLFreezeProtection->setInterval(15000); m_openGLFreezeProtection->setSingleShot(true); m_openGLFreezeProtection->start(); const QString configName = kwinApp()->config()->name(); m_openGLFreezeProtection->moveToThread(m_openGLFreezeProtectionThread); connect(m_openGLFreezeProtection, &QTimer::timeout, m_openGLFreezeProtection, [configName] { const QString unsafeKey(QLatin1String("OpenGLIsUnsafe") + (kwinApp()->isX11MultiHead() ? QString::number(kwinApp()->x11ScreenNumber()) : QString())); auto group =...
I think you are having much more optical seeking with the current layout than Linux does.I do not know the bottleneck perhaps that the compressed uzip is staying on the...
A boot time vs usablity tradeoff: ```diff -mdconfig -a -t vnode -o readonly -f /boot/rootfs.uzip +cp /boot/rootfs.uzip /tmp +mdconfig -a -t vnode -o readonly -f /tmp/rootfs.uzip ```
qterminal has a config file with shortcuts just like featherpad..
> How else are you gonna authenticate against the system password on FreeBSD? There you _must_ be root to do that, even with PAM. Yup it does not work under...
> So either it should be made sure that "Apply" does behave the usual way which can apparently be achieved by something like `kill -SIGUSR1 $(pidof compton)` or the button...
Thanks for your reply. Using mysql I found ``` sqlalchemy.exc.InternalError: (pymysql.err.InternalError) (1170, "BLOB/TEXT column 'checksum' used in key specification without a key length") [SQL: CREATE INDEX ix_blocks_checksum ON blocks (checksum)]...