61 lines
2.3 KiB
Bash
61 lines
2.3 KiB
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2014 Rubén Rodríguez <ruben@trisquel.info>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
#
|
|
|
|
VERSION=2
|
|
COMPONENT=main
|
|
|
|
. ./config
|
|
|
|
rm debian/lightdm-gtk-greeter-ubuntu.conf
|
|
replace lightdm-gtk-greeter-ubuntu lightdm-gtk-greeter-trisquel .
|
|
|
|
cat << EOF > debian/lightdm-gtk-greeter-trisquel.conf
|
|
#
|
|
# background = Background file to use, either an image path or a color (e.g. #772953)
|
|
# theme-name = GTK+ theme to use
|
|
# icon-theme-name = Icon theme to use
|
|
# font-name = Font to use
|
|
# xft-antialias = Whether to antialias Xft fonts (true or false)
|
|
# xft-dpi = Resolution for Xft in dots per inch (e.g. 96)
|
|
# xft-hintstyle = What degree of hinting to use (none, slight, medium, or hintfull)
|
|
# xft-rgba = Type of subpixel antialiasing (none, rgb, bgr, vrgb or vbgr)
|
|
# indicators = semi-colon ";" separated list of allowed indicator modules. Built-in indicators include "~a11y", "~language", "~session", "~power". Unity indicators can be represented by short name (e.g. "sound", "power"), service file name, or absolute path
|
|
# show-clock (true or false)
|
|
# clock-format = strftime-format string, e.g. %H:%M
|
|
# keyboard = command to launch on-screen keyboard
|
|
# position = main window position: x y
|
|
# default-user-image = Image used as default user icon, path or #icon-name
|
|
# screensaver-timeout = Timeout (in seconds) until the screen blanks when the greeter is called as lockscreen
|
|
#
|
|
[greeter]
|
|
background=/usr/share/backgrounds/belenos.png
|
|
theme-name=Trisquel
|
|
icon-theme-name=Trisquel
|
|
font-name=Sans 10
|
|
xft-antialias=true
|
|
xft-dpi=96
|
|
xft-hintstyle=slight
|
|
xft-rgba=rgb
|
|
indicators=~a11y;~language;~session;~power
|
|
EOF
|
|
|
|
changelog "Trisquel themed"
|
|
|
|
compile
|
|
|