this will clearly alert a user they are using e in wayland mode. this is needed as there seems to be far too much confusion if e is in wayland or not and when it is people having issues. this makes sure e's wayland session desktop also has the label in it so it's clear etc.pull/7/head
parent
5ad1680a7d
commit
5cf747d45d
9 changed files with 107 additions and 18 deletions
After Width: | Height: | Size: 8.5 KiB |
@ -1,17 +1,2 @@ |
||||
desktop_config = configuration_data() |
||||
desktop_config.set('prefix', dir_prefix) |
||||
desktop_config.set('VERSION', e_version_rev) |
||||
e_desktop = configure_file(input : 'enlightenment.desktop.in', |
||||
output : 'enlightenment.desktop', |
||||
configuration: desktop_config |
||||
) |
||||
|
||||
if config_h.has('HAVE_WAYLAND') == true |
||||
install_data(e_desktop, |
||||
install_dir : join_paths(dir_data, 'wayland-sessions')) |
||||
endif |
||||
|
||||
if config_h.has('HAVE_WAYLAND_ONLY') == false |
||||
install_data(e_desktop, |
||||
install_dir : join_paths(dir_data, 'xsessions')) |
||||
endif |
||||
subdir('x') |
||||
subdir('wl') |
||||
|
@ -0,0 +1,38 @@ |
||||
[Desktop Entry] |
||||
Type=Application |
||||
Name=Enlightenment (Wayland) |
||||
Name[ca]=Enlightenment (Wayland) |
||||
Name[de]=Enlightenment (Wayland) |
||||
Name[el]=Enlightenment (Wayland) |
||||
Name[eo]=Enlightenment (Wayland) |
||||
Name[fi]=Enlightenment (Wayland) |
||||
Name[fr]=Enlightenment (Wayland) |
||||
Name[gl]=Enlightenment (Wayland) |
||||
Name[ja]=Enlightenment (Wayland) |
||||
Name[ko]=Enlightenment (Wayland) |
||||
Name[ms]=Enlightenment (Wayland) |
||||
Name[pl]=Enlightenment (Wayland) |
||||
Name[ru]=Enlightenment (Wayland) |
||||
Name[sr]=Просвећење (Wayland) |
||||
Name[tr]=Enlightenment (Wayland) |
||||
Comment=Log in using Enlightenment (Version @VERSION@) |
||||
Comment[ca]=Iniciar sessió amb Enlightenment (Versió @VERSION@) |
||||
Comment[da]=Log ind med Enlightenment (Version @VERSION@) |
||||
Comment[de]=Anmelden und Enlightenment verwenden (Version @VERSION@) |
||||
Comment[el]=Είσοδος με το Enlightenment (Έκδοση @VERSION@) |
||||
Comment[eo]=Ensaluti pere de Enlightenment (Versio @VERSION@) |
||||
Comment[es]=Iniciar sesión usando Enlightenment (Versión @VERSION@) |
||||
Comment[fi]=Kirjaudu käyttäen Enlightenmentiä (versio @VERSION@) |
||||
Comment[fr]=Ouvrir une session Enlightenment (Version @VERSION@) |
||||
Comment[gl]=Iniciar sesión usando Enlightenment (Versión @VERSION@) |
||||
Comment[it]=Accedi con Enlightenment (Versione @VERSION@) |
||||
Comment[ko]=Enlightenment 로그인(버전 @VERSION@) |
||||
Comment[ms]=Daftar masuk menggunakan Enligtenment (Versi @VERSION@) |
||||
Comment[pt]=Iniciar sessão no Enlightenment (Versão @VERSION@) |
||||
Comment[ru]=Войти используя Enlightenment (Версия @VERSION@) |
||||
Comment[sr]=Пријавите се за коришћење Просвећења (издања @VERSION@) |
||||
Comment[tr]=Enlightenment kullanarak giriş yaın (Version @VERSION@) |
||||
Icon=@prefix@/share/enlightenment/data/images/enlightenment.png |
||||
TryExec=@prefix@/bin/enlightenment_start |
||||
Exec=@prefix@/bin/enlightenment_start |
||||
DesktopNames=Enlightenment |
@ -0,0 +1,12 @@ |
||||
desktop_config = configuration_data() |
||||
desktop_config.set('prefix', dir_prefix) |
||||
desktop_config.set('VERSION', e_version_rev) |
||||
e_desktop = configure_file( |
||||
input : 'enlightenment.desktop.in', |
||||
output : 'enlightenment.desktop', |
||||
configuration : desktop_config) |
||||
|
||||
if config_h.has('HAVE_WAYLAND') == true |
||||
install_data(e_desktop, |
||||
install_dir : join_paths(dir_data, 'wayland-sessions')) |
||||
endif |
@ -0,0 +1,12 @@ |
||||
desktop_config = configuration_data() |
||||
desktop_config.set('prefix', dir_prefix) |
||||
desktop_config.set('VERSION', e_version_rev) |
||||
e_desktop = configure_file( |
||||
input : 'enlightenment.desktop.in', |
||||
output : 'enlightenment.desktop', |
||||
configuration : desktop_config) |
||||
|
||||
if config_h.has('HAVE_WAYLAND_ONLY') == false |
||||
install_data(e_desktop, |
||||
install_dir : join_paths(dir_data, 'xsessions')) |
||||
endif |
Loading…
Reference in new issue