Commit Graph

2332 Commits (60df3fb90fb03da090efbcb5978a772828dd7ee0)
 

Author SHA1 Message Date
Matías Fonzo 60df3fb90f krdb: Replace the shell process with the specified program, saving resources
Signed-off-by: Matías Fonzo <selk@dragora.org>
5 years ago
Michele Calgaro 8b269b0658
Fixed handling of alternative terminal application in MiniCli.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
5 years ago
Michele Calgaro 4ce5ad8c3c
Fixed handling of KDesktop -> Right click -> Open Terminal Here... when
the terminal application is different from Konsole.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
5 years ago
Michele Calgaro 6949aae9ce Added GUI option to show/hide "Open in Terminal" inside QuickBrowser menus.
Minor fixup for other GUI options in "Configure Panel... -> Menus".

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
5 years ago
Matías Fonzo b5f293f943 starttde: Enhance startup script location
It was originally resolved by following the symbolic links to determine
the location of the startup script.  Mostly adjusted for Debian
distributions and derivatives that have support for "alternatives".
This doesn't work for distributions that install TDE under a
self-contained directory (distros like Dragora, Guix or simply users
that use Graft or GNU Stow tools).  Also projects like GSRC...

This code has been improved to cover these cases, also minimizing the
compatibility impact for the readlink command (non-standard) by
eliminating the use of options for greater compatibility, as some systems
do not have the -e or -f options, as they may also have different behavior
(between systems).

Signed-off-by: Matías Fonzo <selk@dragora.org>
5 years ago
Matías Fonzo c7474d81e9 starttde: Replace -nt operator (bashishm) with a portable solution
Signed-off-by: Matías Fonzo <selk@dragora.org>
5 years ago
Matías Fonzo 0b11285d0b starttde: Fix trailing ], outside test
Signed-off-by: Matías Fonzo <selk@dragora.org>
5 years ago
Matías Fonzo b2c04ad8be starttde: Fix bashisms
'source' is a shell builtin coming from GNU Bash.

Signed-off-by: Matías Fonzo <selk@dragora.org>
5 years ago
Michele Calgaro 1bc47b3d82
Corrected comment description of new keyboard LED sync option in tdm config.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
5 years ago
Michele Calgaro 6281d6f87b
Corrected comment description of new keyboard LED sync option.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
5 years ago
Michele Calgaro dc13aa3ccc
Removed kerry related code.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
5 years ago
Michele Calgaro f16b630348
Removed beagle related code.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
5 years ago
Michele Calgaro be1c4f22fa
Added option in TCC -> System Administration -> Logic Manager ->
Appearance tab to enable/disable the launch of tdekbdledsync in tde
greeter. This resolves bug 1834.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
5 years ago
Michele Calgaro 1fbb6ee8cd
Updated Device Monitor name in system menu to match the one used in the
device tray application.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
5 years ago
Michele Calgaro e9f503cdb8
mediamanager always get started at TDE startup. Therefore the module is no longer available in TCC->TDE Components->Service Manager->Startup Services for enable/disable at startup.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
5 years ago
Roman Savochenko 28771943f7
tdeprint: autostart of KJobViewer is now controlled by a .desktop file.
Taken from patch proposed in https://bugs.trinitydesktop.org/show_bug.cgi?id=1362.

Signed-off-by: Roman Savochenko <roman@roman.home>
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
5 years ago
Michele Calgaro 8250c8e423
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
5 years ago
Michele Calgaro 234e466e0e Additional fixes for XDG folder support.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
5 years ago
Michele Calgaro fddff79d21 Improved support for XDG folders without requiring xdg-user-dirs to be installed.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
5 years ago
Michele Calgaro f8a93efe76 Removed kxdglauncher which is now no longer required.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
5 years ago
Matías Fonzo b52ef67d4a
Redirect some headers noticed by the compiler
[..]
In file included from /usr/src/qi/build/tdebase-trinity-14.0.7/twin/compton-tde/common.h:102,
                 from /usr/src/qi/build/tdebase-trinity-14.0.7/twin/compton-tde/compton.h:10,
                 from /usr/src/qi/build/tdebase-trinity-14.0.7/twin/compton-tde/compton.c:12:
/usr/include/sys/poll.h:1:2: warning: #warning redirecting incorrect #include <sys/poll.h> to <poll.h> [-Wcpp]
    1 | #warning redirecting incorrect #include <sys/poll.h> to <poll.h>
[..]

For reference: https://mirror.git.trinitydesktop.org/gitea/TDE/tdelibs/pulls/64

Signed-off-by: Matías Fonzo <selk@dragora.org>
5 years ago
Matías Fonzo 67fe6d2e73
Added missing header in ksysguard/ksysguardd/Linux/netstat.c
Without the header, the build log:

[ 96%] Building C object ksysguard/ksysguardd/Linux/CMakeFiles/ksysguardd-static.dir/netstat.c.o
/usr/src/qi/build/tdebase-trinity-14.0.7/ksysguard/ksysguardd/Linux/netstat.c: In function ‘updateNetStatTcpUdpRaw’:
/usr/src/qi/build/tdebase-trinity-14.0.7/ksysguard/ksysguardd/Linux/netstat.c:269:2: error: unknown type name ‘uint’; did you mean ‘int’?
  269 |  uint local_addr, local_port;
      |  ^~~~
      |  int
/usr/src/qi/build/tdebase-trinity-14.0.7/ksysguard/ksysguardd/Linux/netstat.c:270:2: error: unknown type name ‘uint’; did you mean ‘int’?
  270 |  uint remote_addr, remote_port;
      |  ^~~~
      |  int
/usr/src/qi/build/tdebase-trinity-14.0.7/ksysguard/ksysguardd/Linux/netstat.c:272:2: error: unknown type name ‘uint’; did you mean ‘int’?
  272 |  uint state;
      |  ^~~~
      |  int
make[2]: *** [ksysguard/ksysguardd/Linux/CMakeFiles/ksysguardd-static.dir/build.make:180: ksysguard/ksysguardd/Linux/CMakeFiles/ksysguardd-static.dir/netstat.c.o] Error 1
make[2]: Leaving directory '/usr/src/qi/build/tdebase-trinity-14.0.7/BUILD'
make[1]: *** [CMakeFiles/Makefile2:24044: ksysguard/ksysguardd/Linux/CMakeFiles/ksysguardd-static.dir/all] Error 2
make[1]: Leaving directory '/usr/src/qi/build/tdebase-trinity-14.0.7/BUILD'
make: *** [Makefile:130: all] Error 2

Signed-off-by: Matías Fonzo <selk@dragora.org>
5 years ago
Chris bd4492dc54 Synchronize German translation of web pages with the rest.
Signed-off-by: Chris <xchrisx@uber.space>
5 years ago
Michele Calgaro 6b70b67b4b
Use xdg-user-dirs to detect XDG variables instead of kxdglauncher. This relates to issue TDE/tdelibs#60.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
5 years ago
Slávek Banko b496ee27b9
CMakeL10n: Extract konsole schemas and keytabs directly from definition
files instead of generating temporary name list file.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
5 years ago
Chris 0128cf22d9 Synchronize German translation of cursor with the rest.
Signed-off-by: Chris <xchrisx@uber.space>
5 years ago
Chris d86083e73b Improve German translation for kicker_config.
Signed-off-by: Chris <xchrisx@uber.space>
5 years ago
Chris 0f43811380 Fix too long German comment in kcmcrypto.
Signed-off-by: Chris <xchrisx@uber.space>
5 years ago
Chris cac760f0c2 Clean up, improve and fix konq-plugins desktop files.
Signed-off-by: Chris <xchrisx@uber.space>
5 years ago
Chris 81167e8fdb Fix icons of desktop files created by knetattach.
Signed-off-by: Chris <xchrisx@uber.space>
5 years ago
Chris 7b55ca5987 Improve German translation and fix some desktop files.
Signed-off-by: Chris <xchrisx@uber.space>
5 years ago
Janek Stolarek c1384365c9
Add Polish comments to initial desktop icons.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
5 years ago
Chris f1612f91ca Fix wrong XDG patch for tdebase, which resulted in missing icons.
This partially reverts commit a8203cf740.

Signed-off-by: Chris <xchrisx@uber.space>
5 years ago
Chris 0daae46f23 Synchronize German translation with the rest and fix some icons.
Signed-off-by: Chris <xchrisx@uber.space>
5 years ago
Chris 9b964799b4 Improve RU and ES translations, contributed by Vita_Cell.
Signed-off-by: Chris <xchrisx@uber.space>
5 years ago
Chris f076b15382
Add Russian comments to initial desktop icons.
...contributed by Denk from IRC.

Signed-off-by: Chris <xchrisx@uber.space>
5 years ago
Chris 9d18aa3129
Add missing Bulgarian translation to initial desktop icons.
Signed-off-by: Chris <xchrisx@uber.space>
5 years ago
Matías Fonzo 9b5f085b49
Added Spanish translation to complement issue #96
Signed-off-by: Matías Fonzo <selk@dragora.org>
5 years ago
Emanoil Kotsev 8c43819bb7
Added and updated Bulgarian translation
Signed-off-by: Emanoil Kotsev <deloptes@gmail.com>
5 years ago
Michele Calgaro 55b1b912fd
Add Italian comments to initial desktop icons.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
5 years ago
gregory guy ebef04cd20
Add French comments to initial desktop icons.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
5 years ago
Slávek Banko 0f5478ae2e
Add Czech comments to initial desktop icons.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
5 years ago
Chris d71f9eeb7a
Improve initial desktop icons.
Signed-off-by: Chris <xchrisx@uber.space>
5 years ago
Chris af4fd07d14 Fix duplicated, missing and misleading icons.
Signed-off-by: Chris <xchrisx@uber.space>
5 years ago
Chris f285d7a814 Fix missing menu entries.
Signed-off-by: Chris <xchrisx@uber.space>
5 years ago
TDE Gitea 0b26624646 Reset submodule main/tdebase/cmake to latest HEAD 5 years ago
Slávek Banko 5fb2d99322
Switch all submodules to https.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
5 years ago
Chris b783ac1db5 Fix wrong KSysGuard description.
Signed-off-by: Chris <xchrisx@uber.space>
5 years ago
François Andriot db1e25b1fe
Prefer TIRPC detection over search for rpc/rpc.h header.
Signed-off-by: François Andriot <francois.andriot@free.fr>
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
5 years ago
Chris 354cfa3a08 Improve filepreviews settings icon.
Signed-off-by: Chris <xchrisx@uber.space>
5 years ago