summaryrefslogtreecommitdiffstats
path: root/default_desktop
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 16:08:26 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 16:08:26 +0000
commit59845ba9b3df5df775cf8c5a65d30375b984e3c7 (patch)
tree6c5c6d57676acf601505f35e53194e5e7a86f0c3 /default_desktop
parentInitial commit. (diff)
downloadtasksel-59845ba9b3df5df775cf8c5a65d30375b984e3c7.tar.xz
tasksel-59845ba9b3df5df775cf8c5a65d30375b984e3c7.zip
Adding upstream version 3.68+deb11u1.upstream/3.68+deb11u1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'default_desktop')
-rw-r--r--default_desktop16
1 files changed, 16 insertions, 0 deletions
diff --git a/default_desktop b/default_desktop
new file mode 100644
index 0000000..9b840ee
--- /dev/null
+++ b/default_desktop
@@ -0,0 +1,16 @@
+# Shell library to get the default desktop that tasksel will select
+# for an architecture.
+#
+# This may be used outside of tasksel (eg, by debian-cd) so should be a
+# stable interface.
+
+default_desktop_for_arch() {
+ case "$1" in
+ i386) echo gnome ;;
+ amd64) echo gnome ;;
+ # gnome only works on linux,
+ # and only on arches with 3d hardware
+ # or llvmpipe. See #765839.
+ *) echo xfce ;;
+ esac
+}