diff options
author | Holger Paradies <retabell@gmx.de> | 2013-06-21 19:21:22 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2013-09-03 20:02:33 +0200 |
commit | 59b85bce3e365403b7dc085c03e97c91ef1a8688 (patch) | |
tree | 206835c9a17c082f101034f21399945146090830 /config/chroot_local-hooks | |
parent | e2aa510f586e2c2056e433847a308960727a90b0 (diff) | |
download | kanotix-59b85bce3e365403b7dc085c03e97c91ef1a8688.zip kanotix-59b85bce3e365403b7dc085c03e97c91ef1a8688.tar.gz |
lxde configs
reenable vim
enable kanotix old-logo in lightdm
call for lightdm script
enable user list at lightdm login prompt
change to Clearlooks-Phenix
Diffstat (limited to 'config/chroot_local-hooks')
-rwxr-xr-x | config/chroot_local-hooks/03-lxde-fixes | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/config/chroot_local-hooks/03-lxde-fixes b/config/chroot_local-hooks/03-lxde-fixes index 0428a7e..60be728 100755 --- a/config/chroot_local-hooks/03-lxde-fixes +++ b/config/chroot_local-hooks/03-lxde-fixes @@ -3,10 +3,19 @@ if [ -x /usr/sbin/lightdm ]; then # dirty hack kanotix wallpaper on login-screen echo "background=/usr/share/images/kanotix-starrise/kanotix-starrise.png" >>/etc/lightdm/lightdm-gtk-greeter.conf - sed -i s/Industrial/Clearlooks/ /etc/skel/.gtkrc-2.0 + # enable display of users at login prompt + sed -i 's/^greeter-hide-users=true/greeter-hide-users=false/' /etc/lightdm/lightdm.conf + # script is called by lightdm + if [ -x /usr/sbin/kanotix-lightdm-display-setup-script ]; then + sed -i 's/^#display-setup-script=/display-setup-script=\/usr\/sbin\/kanotix-lightdm-display-setup-script/' /etc/lightdm/lightdm.conf + fi + # old kanotix icon in login + sed -i 's/computer/kanotix/' /usr/share/lightdm-gtk-greeter/greeter.ui + # Industrial conflicts + sed -i s/Industrial/Clearlooks-Phenix/ /etc/skel/.gtkrc-2.0 # on lxde delete packages to reduce image-size apt-get purge --yes aptitude aptitude-common - apt-get purge --yes vim vim-common vim-runtime + #apt-get purge --yes vim vim-common vim-runtime fi |