diff --git a/config/desktop/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml b/config/desktop/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml index 8ae3899590..39f68e8e58 100644 --- a/config/desktop/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml +++ b/config/desktop/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml @@ -2,6 +2,6 @@ - + diff --git a/config/desktop/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml b/config/desktop/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml index ddc1693f93..149e9a591f 100644 --- a/config/desktop/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml +++ b/config/desktop/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml @@ -53,7 +53,7 @@ - + diff --git a/config/desktop/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml b/config/desktop/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml index dfa61508ad..fc7a021b00 100644 --- a/config/desktop/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml +++ b/config/desktop/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml @@ -2,7 +2,7 @@ - + diff --git a/configuration.sh b/configuration.sh index 840b5f6e32..d61ecd59a2 100644 --- a/configuration.sh +++ b/configuration.sh @@ -141,7 +141,7 @@ PACKAGE_LIST_DESKTOP="xserver-xorg xserver-xorg-video-fbdev gvfs-backends gvfs-f gtk2-engines gtk2-engines-murrine gtk2-engines-pixbuf libgtk2.0-bin gcj-jre-headless xfce4-screenshooter libgnome2-perl gksu bluetooth \ network-manager-gnome xfce4-notifyd gnome-keyring gcr libgck-1-0 libgcr-3-common p11-kit pasystray pavucontrol pulseaudio \ paman pavumeter pulseaudio-module-gconf pulseaudio-module-bluetooth blueman libpam-gnome-keyring libgl1-mesa-dri mpv \ - libreoffice-writer libreoffice-style-tango libreoffice-gtk policykit-1" + libreoffice-writer libreoffice-style-tango libreoffice-gtk policykit-1 numix-gtk-theme" PACKAGE_LIST_EXCLUDE="xfce4-mixer" diff --git a/scripts/update-motd.d/35-motd b/scripts/update-motd.d/35-motd new file mode 100644 index 0000000000..c595453413 --- /dev/null +++ b/scripts/update-motd.d/35-motd @@ -0,0 +1,9 @@ +#!/bin/bash + +quotes="/etc/update-motd.d/quotes.txt" +if [[ -f $quotes ]]; then + + random_line=$(shuf -i 1-$(wc -l < $quotes) -n 1) + quote=$(sed -n -e "$random_line"p $quotes) + [[ -n $quote ]] && echo -e "\e[93mTip of the day:\e[39m $quote\n" +fi