-
Notifications
You must be signed in to change notification settings - Fork 8
/
packagechooser_DE.conf
3701 lines (3697 loc) · 165 KB
/
packagechooser_DE.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# SPDX-FileCopyrightText: no
# SPDX-License-Identifier: CC0-1.0
# https://github.com/calamares/calamares/blob/calamares/src/modules/packagechooser/packagechooser.conf
---
items:
- id: plasma
name: "KDE Plasma"
description: "KDE Plasma is a graphical workspaces environment created by KDE primarily for Linux systems. The graphical interface was fully migrated to QML, which uses OpenGL for hardware acceleration, which resulted in better performance and reduced power consumption."
screenshot: "/etc/calamares/images/desktops/plasma.png"
netinstall:
name: KDE Plasma Desktop
description: Options for the KDE Plasma desktop installation
noncheckable: true
ignore-share-state: true
subgroups:
- name: Curated
description: Hand-picked offering of the KDE Plasma desktop
selected: true
critical: true
packages:
# ===============
# Display Manager
# ===============
- name: sddm
description: Display manager and login screen
- name: sddm-kcm
description: KDE Config Module for SDDM
# =============
# Screen Locker (sometimes referred to as screensaver)
# =============
- name: kscreenlocker
description: Library and components for secure lock screen architecture
# =============
# Compatibility (like Wayland and Nvidia support)
# =============
- name: egl-wayland
description: EGLStream-based Wayland external platform
- name: layer-shell-qt5
description: Qt 5 component to allow applications to make use of the Wayland wl-layer-shell protocol
- name: plasma5-integration
description: "Qt5 Platform Theme integration plugins for the Plasma workspaces"
- name: kde-gtk-config
description: GTK2 and GTK3 Configurator for KDE
- xdg-desktop-portal-gtk
- gsettings-qt
- gsettings-desktop-schemas
- gnome-settings-daemon
# - name: rebornos-kde-skel
# description: A basic skeleton for KDE to fix issues it has out of the box
# ====
# Core
# ====
- name: bluedevil
description: "Integrate the Bluetooth technology within KDE workspace and applications"
- name: breeze
description: "Artwork, styles and assets for the Breeze visual style for the Plasma Desktop"
- name: breeze-grub
description: "Breeze theme for GRUB"
- name: breeze-gtk
description: "Breeze widget theme for GTK 2 and 3"
- name: breeze-plymouth
description: "Plymouth theme for the Breeze visual style for the Plasma Desktop"
- name: discover
description: "KDE and Plasma resources management GUI"
- name: drkonqi
description: "The KDE crash handler"
- name: flatpak-kcm
description: "Flatpak Permissions Management KCM"
- name: kactivitymanagerd
description: "System service to manage user activities and track the usage patterns"
- name: kde-cli-tools
description: "Tools based on KDE Frameworks 5 to better interact with the system"
- name: kde-gtk-config
description: "Syncs KDE settings to GTK applications"
- name: kdecoration
description: "Plugin based library to create window decorations"
- name: kdeplasma-addons
description: "All kind of addons to improve your Plasma experience"
- name: kgamma
description: "Adjust your monitor gamma settings"
- name: kglobalacceld
description: "Daemon providing Global Keyboard Shortcut (Accelerator) functionality"
- name: kinfocenter
description: "A utility that provides information about a computer system"
- name: kmenuedit
description: "KDE menu editor"
- name: kpipewire
description: "Components relating to pipewire use in Plasma"
- name: kscreen
description: "KDE screen management software"
- name: kscreenlocker
description: "Library and components for secure lock screen architecture"
- name: ksshaskpass
description: "ssh-add helper that uses kwallet and kpassworddialog"
- name: ksystemstats
description: "A plugin based system monitoring daemon"
- name: kwallet-pam
description: "KWallet PAM integration"
- name: kwayland
description: "Qt-style Client and Server library wrapper for the Wayland libraries"
- name: kwayland-integration
description: "Provides integration plugins for various KDE frameworks for the wayland windowing system"
- name: kwin
description: "An easy to use, but flexible, composited Window Manager"
- name: kwrited
description: "KDE daemon listening for wall and write messages"
- name: layer-shell-qt
description: "Qt component to allow applications to make use of the Wayland wl-layer-shell protocol"
- name: layer-shell-qt
description: "Qt component to allow applications to make use of the Wayland wl-layer-shell protocol"
- name: libkscreen
description: "KDE screen management software"
- name: libksysguard
description: "Library to retrieve information on the current status of computer hardware"
- name: libplasma
description: "Plasma library and runtime components"
- name: milou
description: "A dedicated search application built on top of Baloo"
- name: ocean-sound-theme
description: "Ocean Sound Theme for Plasma"
- name: oxygen
description: "KDE Oxygen style"
- name: oxygen-sounds
description: "The Oxygen Sound Theme"
- name: plasma5support
description: "Support components for porting from KF5/Qt5 to KF6/Qt6"
- name: plasma-activities
description: "Core components for KDE Activities"
- name: plasma-activities-stats
description: "A library for accessing the usage data collected by the activities system"
- name: plasma-browser-integration
description: "Components necessary to integrate browsers into the Plasma Desktop"
- name: plasma-desktop
description: "KDE Plasma Desktop"
- name: plasma-disks
description: "Monitors S.M.A.R.T. capable devices for imminent failure"
- name: plasma-firewall
description: "Control Panel for your system firewall"
- name: plasma-integration
description: "Qt Platform Theme integration plugins for the Plasma workspaces"
- name: plasma-nm
description: "Plasma applet written in QML for managing network connections"
- name: plasma-pa
description: "Plasma applet for audio volume management using PulseAudio"
- name: plasma-systemmonitor
description: "An interface for monitoring system sensors, process information and other system resources"
- name: plasma-thunderbolt
description: "Plasma integration for controlling Thunderbolt devices"
- name: plasma-vault
description: "Plasma applet and services for creating encrypted vaults"
- name: plasma-welcome
description: "A friendly onboarding wizard for Plasma"
- name: plasma-workspace
description: "KDE Plasma Workspace"
- name: plasma-workspace-wallpapers
description: "Additional wallpapers for the Plasma Workspace"
- name: plymouth-kcm
description: "KCM to manage the Plymouth (Boot) theme"
- name: polkit-kde-agent
description: "Daemon providing a polkit authentication UI for KDE"
- name: powerdevil
description: "Manages the power consumption settings of a Plasma Shell"
- name: print-manager
description: "A tool for managing print jobs and printers"
- name: qqc2-breeze-style
description: "Applications useful for Plasma development"
- name: sddm-kcm
description: "KDE Config Module for SDDM"
- name: systemsettings
description: "KDE system manager for hardware, software, and workspaces"
- name: wacomtablet
description: "GUI for Wacom Linux drivers that supports different button/pen layout profiles"
- name: xdg-desktop-portal-kde
description: "A backend implementation for xdg-desktop-portal using Qt/KF5"
- name: baloo-widgets
description: "provides extra information for Dolphin's Information Panel when the Baloo file indexer is on"
- name: dolphin-plugins
description: "provides a variety of useful plugins for Dolphin, including ISO mounting"
- name: ffmpegthumbs
description: "provides video thumbnailing plugin"
- name: kde-inotify-survey
description: "warns when apps are using all inotify watches and prompts the user to raise it; this can help users understand why Baloo in particular isn't working properly, and offers them a way to fix it"
- name: kdeconnect
description: "provides remote mobile phone control; also make sure to whitelist its system service in your firewall, if you ship one"
- name: kdegraphics-thumbnailers
description: "provides PDF thumbnailing plugin, among others"
- name: kdenetwork-filesharing
description: "provides the Samba file sharing setup wizard"
- name: kdepim-addons
description: "provides a variety of useful addons for the PIM suite; only needed if you pre-install the PIM suite!"
- name: kio-admin
description: "provides a safe way to edit files as root"
- name: kio-extras
description: "provides the thumbnailing engine and many thumbnailing plugins, among other things"
- name: kio-fuse
description: "provides transparent access to non-KDE apps for files on remote locations"
- name: kio-gdrive
description: "provides transparent KIO access to Google Drive"
- name: libappindicator-gtk3
description: "instead of the GTK2 variant for crisp status notifier systray icons. Note that this might break left click activation in the few apps that supported it in libappindicator, such as onboard."
- name: phonon-qt6-vlc
description: "this is the only maintained and supported Phonon backend for KDE apps that use Phonon for their multimedia needs; the alternative phonon-gstreamer has been unmaintained since 2013 and should not be shipped by default, or at all, ideally"
- name: phonon-qt5-vlc
description: "this is the only maintained and supported Phonon backend for KDE apps that use Phonon for their multimedia needs; the alternative phonon-gstreamer has been unmaintained since 2013 and should not be shipped by default, or at all, ideally"
- name: xwaylandvideobridge
description: "exposes Wayland windows to XWayland-using screen sharing apps"
# ===========
# XDG related (like xdg-desktop-portal-gnome, xdg-user-dirs-gtk, archlinux-xdg-menu)
# ===========
- name: xdg-desktop-portal-kde
description:
# ============
# Polkit agent
# ============
- name: polkit-kde-agent
description: Daemon providing a polkit authentication UI for KDE
# =================
# Extension related (extension manager, store)
# =================
# - name:
# description:
# ===============
# Theming related (theming support, uniform theming, basic theme)
# ===============
- name: kvantum
description: customizable SVG-based theme engine for Qt5
# ===========
# Tweaking apps (like gnome-tweaks)
# ===========
# - name:
# description:
# ========
# Terminal
# ========
- name: konsole
description: KDE terminal emulator
# ============
# File Manager
# ============
- name: dolphin
description: KDE File Manager
- name: dolphin-plugins
description: Extra Dolphin plugins
- name: kio-extras
description: Additional components to increase the functionality of KIO
- name: kio-gdrive
description: KIO Slave to access Google Drive
# ===========
# Text Editor
# ===========
- name: kate
description: Text Editor
# ===============
# Document Viewer
# ===============
- name: okular
description: Document Viewer
# ===============
# Archive Manager
# ===============
- name: ark
description: Archiving Tool
# ============
# Disk Manager
# ============
- name: partitionmanager
description: A KDE utility that allows you to manage disks, partitions, and file systems
- name: plasma-disks
description: Monitors S.M.A.R.T. capable devices for imminent failure
- name: filelight
description: View disk usage information
# ==========
# Calculator
# ==========
- name: kcalc
description: Scientific Calculator
# ==================
# Clock and Calendar
# ==================
# - name: kalarm
# description: Personal alarm scheduler
- name: merkuro
description: A calendar application using Akonadi to sync with external services
# ===========
# Screenshots
# ===========
- name: spectacle
description: KDE screenshot capture utility
# ============
# Image Viewer
# ============
- name: gwenview
description: A fast and easy to use image viewer
# ============
# Media Player
# ============
- name: dragon
description: A multimedia player where the focus is on simplicity, instead of features
- name: Miscellaneous
selected: true
critical: false
subgroups:
- name: Gtk Compatibility
packages:
- name: breeze-gtk
description: Breeze widget theme for GTK 2 and 3
- name: kde-gtk-config
description: GTK2 and GTK3 Configurator for KDE
- name: gnome-settings-daemon
description: For using KDE settings on Gtk apps
- name: gsettings-desktop-schemas
description: For using KDE settings on Gtk apps
- name: gsettings-qt
description: For using KDE settings on Gtk apps
- name: Exhaustive
subgroups:
- name: plasma-desktop
selected: false
critical: true
description: Minimal Plasma Installation
subgroups:
- name: plasma-desktop_inner
hidden: true
packages:
- plasma-desktop
- name: plasma
description: The KDE Plasma Desktop
selected: false
critical: true
packages:
- name: bluedevil
description: "Integrate the Bluetooth technology within KDE workspace and applications"
- name: breeze
description: "Artwork, styles and assets for the Breeze visual style for the Plasma Desktop"
- name: breeze-gtk
description: "Breeze widget theme for GTK 2 and 3"
- name: breeze-plymouth
description: "Plymouth theme for the Breeze visual style for the Plasma Desktop"
- name: discover
description: "KDE and Plasma resources management GUI"
- name: drkonqi
description: "The KDE crash handler"
- name: flatpak-kcm
description: "Flatpak Permissions Management KCM"
- name: kactivitymanagerd
description: "System service to manage user activities and track the usage patterns"
- name: kde-cli-tools
description: "Tools based on KDE Frameworks 5 to better interact with the system"
- name: kde-gtk-config
description: "Syncs KDE settings to GTK applications"
- name: kdecoration
description: "Plugin based library to create window decorations"
- name: kdeplasma-addons
description: "All kind of addons to improve your Plasma experience"
- name: kgamma
description: "Adjust your monitor gamma settings"
- name: kglobalacceld
description: "Daemon providing Global Keyboard Shortcut (Accelerator) functionality"
- name: kinfocenter
description: "A utility that provides information about a computer system"
- name: kmenuedit
description: "KDE menu editor"
- name: kpipewire
description: "Components relating to pipewire use in Plasma"
- name: kscreen
description: "KDE screen management software"
- name: kscreenlocker
description: "Library and components for secure lock screen architecture"
- name: ksshaskpass
description: "ssh-add helper that uses kwallet and kpassworddialog"
- name: ksystemstats
description: "A plugin based system monitoring daemon"
- name: kwallet-pam
description: "KWallet PAM integration"
- name: kwayland
description: "Qt-style Client and Server library wrapper for the Wayland libraries"
- name: kwayland-integration
description: "Provides integration plugins for various KDE frameworks for the wayland windowing system"
- name: kwin
description: "An easy to use, but flexible, composited Window Manager"
- name: kwrited
description: "KDE daemon listening for wall and write messages"
- name: layer-shell-qt
description: "Qt component to allow applications to make use of the Wayland wl-layer-shell protocol"
- name: layer-shell-qt
description: "Qt component to allow applications to make use of the Wayland wl-layer-shell protocol"
- name: libkscreen
description: "KDE screen management software"
- name: libksysguard
description: "Library to retrieve information on the current status of computer hardware"
- name: libplasma
description: "Plasma library and runtime components"
- name: milou
description: "A dedicated search application built on top of Baloo"
- name: ocean-sound-theme
description: "Ocean Sound Theme for Plasma"
- name: oxygen
description: "KDE Oxygen style"
- name: oxygen-sounds
description: "The Oxygen Sound Theme"
- name: plasma5support
description: "Support components for porting from KF5/Qt5 to KF6/Qt6"
- name: plasma-activities
description: "Core components for KDE Activities"
- name: plasma-activities-stats
description: "A library for accessing the usage data collected by the activities system"
- name: plasma-browser-integration
description: "Components necessary to integrate browsers into the Plasma Desktop"
- name: plasma-desktop
description: "KDE Plasma Desktop"
- name: plasma-disks
description: "Monitors S.M.A.R.T. capable devices for imminent failure"
- name: plasma-firewall
description: "Control Panel for your system firewall"
- name: plasma-integration
description: "Qt Platform Theme integration plugins for the Plasma workspaces"
- name: plasma5-integration
description: "Qt5 Platform Theme integration plugins for the Plasma workspaces"
- name: plasma-nm
description: "Plasma applet written in QML for managing network connections"
- name: plasma-pa
description: "Plasma applet for audio volume management using PulseAudio"
- name: plasma-sdk
description: "Applications useful for Plasma development"
- name: plasma-systemmonitor
description: "An interface for monitoring system sensors, process information and other system resources"
- name: plasma-thunderbolt
description: "Plasma integration for controlling Thunderbolt devices"
- name: plasma-vault
description: "Plasma applet and services for creating encrypted vaults"
- name: plasma-welcome
description: "A friendly onboarding wizard for Plasma"
- name: plasma-workspace
description: "KDE Plasma Workspace"
- name: plasma-workspace-wallpapers
description: "Additional wallpapers for the Plasma Workspace"
- name: plymouth-kcm
description: "KCM to manage the Plymouth (Boot) theme"
- name: polkit-kde-agent
description: "Daemon providing a polkit authentication UI for KDE"
- name: powerdevil
description: "Manages the power consumption settings of a Plasma Shell"
- name: print-manager
description: "A tool for managing print jobs and printers"
- name: qqc2-breeze-style
description: "Applications useful for Plasma development"
- name: sddm-kcm
description: "KDE Config Module for SDDM"
- name: systemsettings
description: "KDE system manager for hardware, software, and workspaces"
- name: wacomtablet
description: "GUI for Wacom Linux drivers that supports different button/pen layout profiles"
- name: xdg-desktop-portal-kde
description: "A backend implementation for xdg-desktop-portal using Qt/KF5"
- name: kde-applications
description: The full set of KDE Applications
selected: false
critical: false
packages:
- name: akonadi-calendar-tools
description: "CLI tools to manage akonadi calendars"
- name: akonadi-import-wizard
description: "Import data from other mail clients to KMail"
- name: akonadiconsole
description: "Akonadi management and debugging console"
- name: akregator
description: "A Feed Reader by KDE"
- name: alligator
description: "Kirigami-based RSS reader"
- name: angelfish
description: "Web browser for Plasma Mobile"
- name: arianna
description: "EPub Reader for mobile devices"
- name: ark
description: "Archiving Tool"
- name: artikulate
description: "Improve your pronunciation by listening to native speakers"
- name: audiocd-kio
description: "Kioslave for accessing audio CDs"
- name: audiotube
description: "Client for YouTube Music"
- name: blinken
description: "Memory Enhancement Game"
- name: bomber
description: "A single player arcade game"
- name: bovo
description: "A Gomoku like game for two players"
- name: cantor
description: "KDE Frontend to Mathematical Software"
- name: cervisia
description: "CVS Frontend"
- name: colord-kde
description: "Interfaces and session daemon to colord for KDE"
- name: dolphin
description: "KDE File Manager"
- name: dolphin-plugins
description: "Extra Dolphin plugins"
- name: dragon
description: "A multimedia player where the focus is on simplicity, instead of features"
- name: elisa
description: "A simple music player aiming to provide a nice experience for its users"
- name: falkon
description: "Cross-platform QtWebEngine browser"
- name: ffmpegthumbs
description: "FFmpeg-based thumbnail creator for video files"
- name: filelight
description: "View disk usage information"
- name: ghostwriter
description: "Aesthetic, distraction-free Markdown editor"
- name: granatier
description: "A clone of the classic Bomberman game"
- name: grantlee-editor
description: "Editor for Grantlee themes"
- name: gwenview
description: "A fast and easy to use image viewer"
- name: isoimagewriter
description: "Program to write hybrid ISO files onto USB disks"
- name: itinerary
description: "Itinerary and boarding pass management application"
- name: juk
description: "A jukebox, tagger and music collection manager"
- name: k3b
description: "Feature-rich and easy to handle CD burning application"
- name: kaddressbook
description: "KDE contact manager"
- name: kajongg
description: "The ancient Chinese board game for 4 players"
- name: kalarm
description: "Personal alarm scheduler"
- name: kalgebra
description: "Graph Calculator"
- name: kalk
description: "A powerful cross-platform calculator application built with the Kirigami framework"
- name: kalzium
description: "Periodic Table of Elements"
- name: kamera
description: "KDE integration for gphoto2 cameras"
- name: kamoso
description: "A webcam recorder from KDE community"
- name: kanagram
description: "Letter Order Game"
- name: kapman
description: "A clone of the well known game Pac-Man"
- name: kapptemplate
description: "KDE Template Generator"
- name: kasts
description: "Kirigami-based podcast player"
- name: kate
description: "Advanced text editor"
- name: katomic
description: "A fun and educational game built around molecular geometry"
- name: kbackup
description: "A program that lets you back up any directories or files"
- name: kblackbox
description: "A game of hide and seek played on a grid of boxes"
- name: kblocks
description: "The classic falling blocks game"
- name: kbounce
description: "A single player arcade game with the elements of puzzle"
- name: kbreakout
description: "A Breakout-like game"
- name: kbruch
description: "Exercise Fractions"
- name: kcachegrind
description: "Visualization of Performance Profiling Data"
- name: kcalc
description: "Scientific Calculator"
- name: kcharselect
description: "Character Selector"
- name: kclock
description: "Clock app for Plasma Mobile"
- name: kcolorchooser
description: "Color Chooser"
- name: kcron
description: "Configure and schedule tasks"
- name: kde-dev-scripts
description: "Scripts and setting files useful during development of KDE software"
- name: kde-dev-utils
description: "Small utilities for developers using KDE/Qt libs/frameworks"
- name: kde-inotify-survey
description: "Tooling for monitoring inotify limits and informing the user when they have been or about to be reached"
- name: kdebugsettings
description: "An application to enable/disable qCDebug"
- name: kdeconnect
description: "Adds communication between KDE and your smartphone"
- name: kdegraphics-thumbnailers
description: "Thumbnailers for various graphics file formats"
- name: kdenetwork-filesharing
description: "Properties dialog plugin to share a directory with the local network"
- name: kdenlive
description: "A non-linear video editor for Linux using the MLT video framework"
- name: kdepim-addons
description: "Addons for KDE PIM applications"
- name: kdesdk-kio
description: "KDE SDK KIO-Slaves"
- name: kdesdk-thumbnailers
description: "Plugins for the thumbnailing system"
- name: kdevelop
description: "C++ IDE using KDE technologies"
- name: kdevelop
description: "C++ IDE using KDE technologies"
- name: kdevelop-php
description: "PHP language and documentation plugin for KDevelop"
- name: kdevelop-python
description: "Python language and documentation plugin for KDevelop"
- name: kdf
description: "View Disk Usage"
- name: kdialog
description: "A utility for displaying dialog boxes from shell scripts"
- name: kdiamond
description: "A single player puzzle game"
- name: keditbookmarks
description: "Bookmark Organizer and Editor"
- name: keysmith
description: "OTP client for Plasma Mobile and Desktop"
- name: kfind
description: "Find Files/Folders"
- name: kfourinline
description: "A four-in-a-row game"
- name: kgeography
description: "Geography Trainer"
- name: kget
description: "Download Manager"
- name: kgoldrunner
description: "A game of action and puzzle solving"
- name: kgpg
description: "A GnuPG frontend"
- name: khangman
description: "Hangman Game"
- name: khelpcenter
description: "Application to show KDE Applications documentation"
- name: kig
description: "Interactive Geometry"
- name: kigo
description: "An open-source implementation of the popular Go game"
- name: killbots
description: "A simple game of evading killer robots"
- name: kimagemapeditor
description: "HTML Image Map Editor"
- name: kio-admin
description: "Manage files as administrator using the admin:// KIO protocol"
- name: kio-extras
description: "Additional components to increase the functionality of KIO"
- name: kio-gdrive
description: "KIO Slave to access Google Drive"
- name: kio-zeroconf
description: "Network Monitor for DNS-SD services (Zeroconf)"
- name: kirigami-gallery
description: "Gallery application built using Kirigami"
- name: kiriki
description: "An addictive and fun dice game"
- name: kiten
description: "Japanese Reference/Study Tool"
- name: kjournald
description: "Framework for interacting with systemd-journald"
- name: kjumpingcube
description: "A simple tactical game"
- name: kleopatra
description: "Certificate Manager and Unified Crypto GUI"
- name: klettres
description: "Learn The Alphabet"
- name: klickety
description: "An adaptation of the Clickomania game"
- name: klines
description: "A simple but highly addictive one player game"
- name: kmag
description: "Screen Magnifier"
- name: kmahjongg
description: "A tile matching game for one or two players"
- name: kmail
description: "KDE mail client"
- name: kmail-account-wizard
description: "KMail account wizard"
- name: kmines
description: "The classic Minesweeper game"
- name: kmix
description: "KDE volume control program"
- name: kmousetool
description: "Clicks the mouse for you, reducing the effects of RSI"
- name: kmouth
description: "Speech Synthesizer Frontend"
- name: kmplot
description: "Mathematical Function Plotter"
- name: knavalbattle
description: "A ship sinking game"
- name: knetwalk
description: "Connect all the terminals to the server, in as few turns as possible"
- name: knights
description: "Chess board by KDE with XBoard protocol support"
- name: koko
description: "Image gallery application"
- name: kolf
description: "A miniature golf game with 2d top-down view"
- name: kollision
description: "A simple ball dodging game"
- name: kolourpaint
description: "Paint Program"
- name: kompare
description: "Graphical file differences tool"
- name: kongress
description: "Companion application for conferences"
- name: konqueror
description: "KDE File Manager & Web Browser"
- name: konquest
description: "The KDE version of Gnu-Lactic"
- name: konsole
description: "KDE terminal emulator"
- name: kontact
description: "KDE Personal Information Manager"
- name: kontrast
description: "Tool to check contrast for colors that allows verifying that your colors are correctly accessible"
- name: konversation
description: "A user-friendly and fully-featured IRC client"
- name: korganizer
description: "Calendar and scheduling Program"
- name: kpat
description: "Offers a selection of solitaire card games"
- name: krdc
description: "Remote Desktop Client"
- name: krecorder
description: "Audio recorder for Plasma Mobile and other platforms"
- name: kreversi
description: "A simple one player strategy game played against the computer"
- name: krfb
description: "Desktop Sharing"
- name: kruler
description: "Screen Ruler"
- name: kshisen
description: "A solitaire-like game played using the standard set of Mahjong tiles"
- name: ksirk
description: "A computerized version of a well known strategy game"
- name: ksnakeduel
description: "A simple snake duel game"
- name: kspaceduel
description: "Each of two possible players controls a satellite spaceship orbiting the sun"
- name: ksquares
description: "A game modeled after the well known pen and paper based game of Dots and Boxes"
- name: ksudoku
description: "A logic-based symbol placement puzzle"
- name: ksystemlog
description: "System log viewer tool"
- name: kteatime
description: "A handy timer for steeping tea"
- name: ktimer
description: "Countdown Launcher"
- name: ktorrent
description: "A powerful BitTorrent client for KDE"
- name: ktouch
description: "Touch Typing Tutor"
- name: ktrip
description: "Public Transport Assistance for Mobile Devices"
- name: ktuberling
description: "A simple constructor game suitable for children and adults alike"
- name: kturtle
description: "Educational Programming Environment"
- name: kubrick
description: "Based on the famous Rubik's Cube"
- name: kwalletmanager
description: "Wallet management tool"
- name: kwave
description: "A sound editor"
- name: kweather
description: "Weather application for Plasma Mobile"
- name: kwordquiz
description: "Flash Card Trainer"
- name: lokalize
description: "Computer-Aided Translation System"
- name: lskat
description: "Lieutenant Skat is a fun and engaging card game for two players"
- name: marble
description: "Desktop Globe"
- name: markdownpart
description: "KPart for rendering Markdown content"
- name: mbox-importer
description: "Import mbox files to KMail"
- name: merkuro
description: "A calendar application using Akonadi to sync with external services"
- name: minuet
description: "A KDE Software for Music Education"
- name: neochat
description: "A client for matrix, the decentralized communication protocol"
- name: okular
description: "Document Viewer"
- name: palapeli
description: "A single-player jigsaw puzzle game"
- name: parley
description: "Vocabulary Trainer"
- name: partitionmanager
description: "A KDE utility that allows you to manage disks, partitions, and file systems"
- name: picmi
description: "A nonogram logic game for KDE"
- name: pim-data-exporter
description: "Import and export KDE PIM settings"
- name: pim-sieve-editor
description: "Mail sieve editor"
- name: plasmatube
description: "Kirigami YouTube video player based on QtMultimedia and youtube-dl"
- name: poxml
description: "Translates DocBook XML files using gettext po files"
- name: rocs
description: "Graph Theory IDE"
- name: signon-kwallet-extension
description: "KWallet integration for signon framework"
- name: skanlite
description: "Image Scanning Application"
- name: skanpage
description: "Utility to scan images and multi-page documents"
- name: skladnik
description: "An implementation of the Japanese warehouse keeper game Sokoban"
- name: spectacle
description: "KDE screenshot capture utility"
- name: step
description: "Interactive Physical Simulator"
- name: svgpart
description: "A KPart for viewing SVGs"
- name: sweeper
description: "System Cleaner"
- name: telly-skout
description: "Convergent TV guide based on Kirigami"
- name: tokodon
description: "A Mastodon client for Plasma"
- name: umbrello
description: "UML modeller"
- name: yakuake
description: "A drop-down terminal emulator based on KDE konsole technology"
- name: zanshin
description: "To-do management application based on Akonadi"
- id: cinnamon
name: "Cinnamon"
description: "Cinnamon is a desktop environment which combines a traditional desktop layout with modern graphical effects. The underlying technology was forked from the GNOME desktop. As of version 2.0, Cinnamon is a complete desktop environment and not merely a frontend for GNOME like GNOME Shell and Unity."
screenshot: "/etc/calamares/images/desktops/cinnamon.png"
netinstall:
name: Cinnamon Desktop
description: Options for the Cinnamon desktop installation
noncheckable: true
ignore-share-state: true
subgroups:
- name: Curated
description: Hand-picked offering of the Cinnamon desktop
selected: true
critical: true
packages:
# ===============
# Display Manager
# ===============
- name: lightdm
description: Display Manager and Login screen
- name: lightdm-slick-greeter
description: A GTK based greeter default in Linux Mint
# =============
# Screen Locker (sometimes referred to as screensaver)
# =============
- name: cinnamon-screensaver
description: Screensaver designed to integrate well with the Cinnamon desktop
# =============
# Compatibility (like Wayland and Nvidia support)
# =============
# - name:
# description:
# ====
# Core
# ====
- name: cinnamon
description: The Cinnamon desktop
- name: cinnamon-session
description: The Cinnamon Session Handler
- name: cinnamon-menus
description: Cinnamon menu specifications
- name: caribou
description: A text entry and UI navigation application (on-screen keyboard)
- name: gsound
description: Small library for playing system sounds
- name: gstreamer
description: Multimedia graph framework - core
- name: librsvg
description: SVG rendering library
- cjs
- libgnomekbd
- libkeybinder3
- python-cairo
- python-gobject
- python-pam
- python-pexpect
- python-pillow
- python-pyinotify
- python-pytz
- python-requests
- python-tinycss2
- python-xapp
- name: mintlocale
description: Adds the ability to properly switch between locales for the cinnamon desktop
- name: cinnamon-translations
description: Translations for Cinnamon and Nemo
# ==============
# Window Manager
# ==============
- name: muffin
description: Cinnamon window manager based on Mutter
# ================
# Settings related
# ================
- name: cinnamon-control-center
description: The Control Center for Cinnamon
- name: cinnamon-settings-daemon
description: The Cinnamon Settings daemon
- name: libkeybinder3
description: A library for registering global keyboard shortcuts
- name: network-manager-applet
description: Applet for managing network connections
- name: timezonemap
description: Gtk3 timezone map widget, forked from gnome which forked from Ubiquity
- name: xapp
description: Common library for X-Apps project
- name: blueberry
description: Bluetooth support
- name: system-config-printer
description: Printer settings
- name: touchegg
description: Linux multi-touch gesture recognizer
# ===========
# XDG related (like xdg-desktop-portal-gnome, xdg-user-dirs-gtk, archlinux-xdg-menu)
# ===========
- name: xdg-desktop-portal-xapp
description: A backend implementation for xdg-desktop-portal
- name: xdg-desktop-portal-gtk
description: A backend implementation for xdg-desktop-portal
# Polkit agent
# ============
- name: polkit-gnome
description: Legacy polkit authentication agent for GNOME
# =================
# Extension related (extension manager, store)
# =================
# - name:
# description:
# ===============
# Theming related (theming support, uniform theming, basic theme)
# ===============
- name: rebornos-cinnamon-skel
description: Theme for RebornOS Cinnamon
# ===========
# Tweaking apps (like gnome-tweaks)
# ===========
# - name:
# description:
# ========
# Terminal
# ========
- name: mate-terminal
description: MATE Terminal for Cinnamon
# ============
# File Manager
# ============
- name: nemo
description: "Cinnamon file manager (Nautilus fork)"
# ===========
# Text Editor
# ===========
- name: xed
description: A small and lightweight text editor. X-Apps Project
# ===============
# Document Viewer
# ===============
- name: xreader
description: Document viewer for files like PDF and Postscript. X-Apps Project.
# ===============
# Archive Manager
# ===============
- name: file-roller
description: Create and modify archives
# ============
# Disk Manager
# ============
- name: gparted
description: A Partition Magic clone, frontend to GNU Parted
- name: baobab
description: A graphical directory tree analyzer
# ==========
# Calculator
# ==========
- name: mate-calc
description: Calculator for the MATE desktop environment
# ==================
# Clock and Calendar
# ==================
- name: gnome-clocks
description: Clocks applications for GNOME
- name: gnome-calendar
description: Simple and beautiful calendar application designed to perfectly fit the GNOME desktop
# ===========
# Screenshots
# ===========
- name: gnome-screenshot
description: Take pictures of your screen
# ============
# Image Viewer
# ============
- name: xviewer
description: A simple and easy to use image viewer. X-Apps Project