Diese Notizen habe ich mir gemacht, als ich noch SuSE benutzt habe. Vielleicht besteht ja noch Bedarf:
splash auf native setzen
SPLASH auf no setzen
# The following options will be passed to all MySQL clients [client] password = xyz port = 3306 socket = /var/lib/mysql/mysql.sock
start) ändern:
for i in 1 2 3 4 5 6; do sleep 1 $MYADMIN ping &>/dev/null && i='' && break done
Um die Kantenglättung für Schriften kleiner als 11pt abzuschalten und die Verwendung von Bitmapfonts durch XFT zu ermöglichen, können folgende Einträge verwendet werden:
Für die ~/.fonts.conf:
<fontconfig>
<dir>/usr/X11R6/lib/X11/fonts/75dpi</dir>
<dir>/usr/X11R6/lib/X11/fonts/Speedo</dir>
<dir>/usr/X11R6/lib/X11/fonts/misc</dir>
<dir>/usr/X11R6/lib/X11/fonts/util</dir>
<match target="font">
<test qual="any" name="size" compare="less">
<int>11</int>
</test>
<edit name="antialias" mode="assign">
<bool>false</bool>
</edit>
</match>
</fontconfig>
Für die ~/.xftconfig:
dir "/usr/X11R6/lib/X11/fonts/misc"
dir "/usr/X11R6/lib/X11/fonts/util"
dir "/usr/X11R6/lib/X11/fonts/75dpi"
dir "/usr/X11R6/lib/X11/fonts/Speedo"
match
any size < 11
edit
antialias = false;
Letzte Änderung: 19.09.2008