Table des matières

Installation and configuration of Fedora23/24/25 LXDE

Installation

Taking the ISO netinstall, select “fedora-LXDE” (left panel) without any other option (right panel).

Installation of supplementary repositories:

Configuration

ssh

LXDE session manager

Authentication via sssd on SME-server

Authentication client Fedora on SME-server via sssd ldap

Unmout by logout

The logout doesn't unmout the shares automatically mounted at login ⇒ the next user can access them inspite he doesn't have the needed permissions.
In order to avoid this:

General settings

LXDE gui

Languages of the sessions

Go to administrationLanguages and select the language to be installed.
The langage is then available into the sessions manager for login.

Sélectionner et activer une touche "compose"

$xev

et appuyer sur la touche à assigner pour la repérer: c'est la keycode XX

Dans le ’’home’’ de l'utilisateur créer un fichier .xmodmaprc contenant:

keycode 64 = Multi_key

Dans /usr/share/applications entrer le script:

#!/bin/bash

/usr/bin/xmodmap /home/mon_utilisateur/.xmodmaprc

exit 0;

et lui donner les permissions d'exécution via un chmod +x

Dans /home/mon_utilisateur/.config/autostart créer un fichier activation_touche_compose.desktop qui contient:

[Desktop Entry]
Encoding=UTF-8
Type=Application
Name=activation touche compose
Name[fr]=activation touche compose
Comment=activation touche compose
Comment[fr]=activation touche compose
Exec=/usr/share/applications/script_touche_compose
Icon=applications-utilities
Categories=GTK;Utility;

Aller dans préférencesParamètres de la session de bureau et vérifier que l'entrée dans Applications démarrées automatiquement est activée avant de relancer la session.

Printing / Scanning

Evolution (emails)

Keyring: the passwords of the account are automatically stored into the keyring.
A password for the keyring must be set.
At the next login the user is asked to enter the password of the keyring and if th keyring should be unlocked automatically at the login.
After ticking the box, it is not asked for the keyring password at the enxt sessions and Evolution can be run without entering the password.

Midori

Run a script as autostart by session opening #/# script for a slideshow as a wallpaper

This is a draft and doesn't work properly.
If you know how to improve it, please mail me!

http://debian-facile.org/doc:environnements:lxde:diaporama-fond-ecran

script

Put following into /usr/my_scripts/the_script.sh with permission for execution:

#!/bin/bash
 
folder=~/fonds/
sleepTime=60s
pid=$(ps xc |grep lxsession |awk ' { print $1 }')
 
while [ $(ps xc |grep lxsession |awk ' { print $1 }') == "$pid" ]; do
   file=$(find "$folder" -maxdepth 1 -type f |shuf |head -n 1)
   pcmanfm -w "$file" --wallpaper-mode=stretch
   sleep "$sleepTime"
done 

.desktop file

put following into /usr/share/applications/WPSlideShow.desktop

[Desktop Entry]
Encoding=UTF-8
Type=Application
Name=WPSlideShow
Name[fr]=WPSlideShow
Comment=diaporama
Comment[fr]=diaporama
Exec=/usr/my_scripts/the_script
Icon=applications-utilities
Categories=GTK;Utility;

autostart

Go to preferencesParameters of the session and tick on the script.

DokuWiki Appliance - Powered by TurnKey Linux