Compare commits
No commits in common. "factory" and "devel" have entirely different histories.
@ -1,6 +1,6 @@
|
||||
diff -upr xdm.orig/etc/X11/xdm/RunChooser xdm/etc/X11/xdm/RunChooser
|
||||
--- xdm.orig/etc/X11/xdm/RunChooser 2015-07-29 14:46:22.000000000 +0200
|
||||
+++ xdm/etc/X11/xdm/RunChooser 2024-11-20 14:47:22.156525704 +0100
|
||||
diff -u -r ../old/etc/X11/xdm/RunChooser ./etc/X11/xdm/RunChooser
|
||||
--- ../old/etc/X11/xdm/RunChooser 2015-07-29 14:46:22.000000000 +0200
|
||||
+++ ./etc/X11/xdm/RunChooser 2024-08-09 11:27:04.390249591 +0200
|
||||
@@ -9,7 +9,7 @@
|
||||
#
|
||||
LIBDIR=/usr/lib/X11
|
||||
@ -10,7 +10,7 @@ diff -upr xdm.orig/etc/X11/xdm/RunChooser xdm/etc/X11/xdm/RunChooser
|
||||
BINDIR=/usr/bin
|
||||
|
||||
no_exit_on_failed_exec=1
|
||||
@@ -107,6 +107,8 @@ if test -x $xmodmap -o -x $xkbcomp ; the
|
||||
@@ -107,6 +107,8 @@
|
||||
cat $sysxkbmap | $xkbcomp - $DISPLAY
|
||||
elif test -r $sysmodmap ; then
|
||||
$xmodmap $sysmodmap
|
||||
@ -19,7 +19,7 @@ diff -upr xdm.orig/etc/X11/xdm/RunChooser xdm/etc/X11/xdm/RunChooser
|
||||
fi
|
||||
else
|
||||
# TCP/IP connection (remote or local)
|
||||
@@ -114,6 +116,8 @@ if test -x $xmodmap -o -x $xkbcomp ; the
|
||||
@@ -114,6 +116,8 @@
|
||||
cat $defxkbmap | $xkbcomp - $DISPLAY
|
||||
elif test -r $defmodmap ; then
|
||||
$xmodmap $defmodmap
|
||||
@ -28,10 +28,146 @@ diff -upr xdm.orig/etc/X11/xdm/RunChooser xdm/etc/X11/xdm/RunChooser
|
||||
fi
|
||||
if test -s $hostxkbmap -a -x $xkbcomp ; then
|
||||
cat $hostxkbmap | $xkbcomp - $DISPLAY
|
||||
diff -upr xdm.orig/etc/X11/xdm/sys.xsession xdm/etc/X11/xdm/sys.xsession
|
||||
--- xdm.orig/etc/X11/xdm/sys.xsession 2016-06-03 15:25:42.000000000 +0200
|
||||
+++ xdm/etc/X11/xdm/sys.xsession 2024-11-20 14:47:22.173192466 +0100
|
||||
@@ -38,10 +38,16 @@ checkproc ()
|
||||
diff -u -r ../old/etc/X11/xdm/Xreset ./etc/X11/xdm/Xreset
|
||||
--- ../old/etc/X11/xdm/Xreset 2014-12-15 19:34:46.000000000 +0100
|
||||
+++ ./etc/X11/xdm/Xreset 2024-08-09 11:27:04.390249591 +0200
|
||||
@@ -10,7 +10,7 @@
|
||||
#
|
||||
LIBDIR=/usr/lib/X11
|
||||
ETCDIR=/etc/X11
|
||||
- XDMDIR=${ETCDIR}/xdm
|
||||
+ XDMDIR=/usr/${ETCDIR}/xdm
|
||||
BINDIR=/usr/bin
|
||||
xmessage=${BINDIR}/xmessage
|
||||
xconsole=${BINDIR}/xconsole
|
||||
diff -u -r ../old/etc/X11/xdm/Xresources ./etc/X11/xdm/Xresources
|
||||
--- ../old/etc/X11/xdm/Xresources 2015-08-04 12:13:36.000000000 +0200
|
||||
+++ ./etc/X11/xdm/Xresources 2024-08-09 11:27:04.390249591 +0200
|
||||
@@ -100,4 +100,4 @@
|
||||
!
|
||||
! Include system wide Xresources
|
||||
!
|
||||
-#include "/etc/X11/Xresources"
|
||||
+#include "/usr/etc/X11/Xresources"
|
||||
diff -u -r ../old/etc/X11/xdm/Xsession ./etc/X11/xdm/Xsession
|
||||
--- ../old/etc/X11/xdm/Xsession 2021-01-04 15:20:27.548208000 +0100
|
||||
+++ ./etc/X11/xdm/Xsession 2024-08-09 11:27:04.390249591 +0200
|
||||
@@ -34,10 +34,18 @@
|
||||
# Some system defaults
|
||||
#
|
||||
XETCDIR=/etc/X11
|
||||
- XDMDIR=$XETCDIR/xdm
|
||||
- XINITDIR=$XETCDIR/xinit
|
||||
+ XDMDIR=/usr/$XETCDIR/xdm
|
||||
: ${TMPDIR=/tmp}
|
||||
|
||||
+# xinitrc moved to %{_libexecdir}/xinit in xinit package
|
||||
+if [ -r /usr/libexec/xinit/xinitrc ]; then
|
||||
+ XINITDIR=/usr/libexec/xinit
|
||||
+elif [ -r /usr/lib/xinit/xinitrc ]; then
|
||||
+ XINITDIR=/usr/lib/xinit
|
||||
+else
|
||||
+ XINITDIR=$XETCDIR/xinit
|
||||
+fi
|
||||
+
|
||||
export OPENWINHOME TMPDIR
|
||||
test -n "$XAUTHORITY" || unset XAUTHORITY
|
||||
|
||||
@@ -187,7 +195,11 @@
|
||||
#
|
||||
# By default we set system defaults for the language
|
||||
#
|
||||
-. /etc/profile.d/lang.sh
|
||||
+if [ -r /etc/profile.d/lang.sh ]; then
|
||||
+ . /etc/profile.d/lang.sh
|
||||
+elif [ -r /usr/etc/profile.d/lang.sh ]; then
|
||||
+ . /usr/etc/profile.d/lang.sh
|
||||
+fi
|
||||
|
||||
#
|
||||
# Handle arguments given by xdm/kdm/gdm.
|
||||
@@ -261,7 +273,11 @@
|
||||
# No window manager? Get system default
|
||||
#
|
||||
if test -z "$WINDOWMANAGER" ; then
|
||||
- . /etc/profile.d/profile.sh
|
||||
+ if [ -r /etc/profile.d/profile.sh ]; then
|
||||
+ . /etc/profile.d/profile.sh
|
||||
+ elif [ -r /usr/etc/profile.d/profile.sh ]; then
|
||||
+ . /usr/etc/profile.d/profile.sh
|
||||
+ fi
|
||||
fi
|
||||
|
||||
#
|
||||
@@ -291,7 +307,12 @@
|
||||
# Source common code shared between the
|
||||
# X session and X init scripts
|
||||
#
|
||||
-. /etc/X11/xinit/xinitrc.common
|
||||
+
|
||||
+if [ -r /etc/X11/xinit/xinitrc.common ]; then
|
||||
+ . /etc/X11/xinit/xinitrc.common
|
||||
+elif [ -r /usr/etc/X11/xinit/xinitrc.common ]; then
|
||||
+ . /usr/etc/X11/xinit/xinitrc.common
|
||||
+fi
|
||||
|
||||
# Restore arguments but skip window manager
|
||||
set -- "${argv[@]}"
|
||||
diff -u -r ../old/etc/X11/xdm/Xsetup ./etc/X11/xdm/Xsetup
|
||||
--- ../old/etc/X11/xdm/Xsetup 2020-08-26 15:35:43.014615021 +0200
|
||||
+++ ./etc/X11/xdm/Xsetup 2024-08-09 11:27:04.390249591 +0200
|
||||
@@ -9,7 +9,7 @@
|
||||
#
|
||||
LIBDIR=/usr/lib/X11
|
||||
ETCDIR=/etc/X11
|
||||
- XDMDIR=${ETCDIR}/xdm
|
||||
+ XDMDIR=/usr/${ETCDIR}/xdm
|
||||
BINDIR=/usr/bin
|
||||
|
||||
no_exit_on_failed_exec=1
|
||||
@@ -184,7 +184,7 @@
|
||||
#endif
|
||||
EOF
|
||||
else
|
||||
- $xrdb $cpp -override -retain ${ETCDIR}/Xresources
|
||||
+ $xrdb $cpp -override -retain ${XDMDIR}/Xresources
|
||||
fi
|
||||
|
||||
#
|
||||
@@ -206,6 +206,8 @@
|
||||
cat $sysxkbmap | $xkbcomp - $DISPLAY
|
||||
elif test -r $sysmodmap ; then
|
||||
$xmodmap $sysmodmap
|
||||
+ elif test -r /usr/etc/X11/Xmodmap ; then
|
||||
+ $xmodmap /usr/etc/X11/Xmodmap
|
||||
fi
|
||||
else
|
||||
# TCP/IP connection (remote or local)
|
||||
@@ -213,6 +215,8 @@
|
||||
cat $defxkbmap | $xkbcomp - $DISPLAY
|
||||
elif test -r $defmodmap ; then
|
||||
$xmodmap $defmodmap
|
||||
+ elif test -r /usr/etc/X11/Xmodmap.remote ; then
|
||||
+ $xmodmap /usr/etc/X11/Xmodmap.remote
|
||||
fi
|
||||
if test -s $hostxkbmap -a -x $xkbcomp ; then
|
||||
cat $hostxkbmap | $xkbcomp - $DISPLAY
|
||||
diff -u -r ../old/etc/X11/xdm/Xstartup ./etc/X11/xdm/Xstartup
|
||||
--- ../old/etc/X11/xdm/Xstartup 2020-08-26 15:35:26.270871116 +0200
|
||||
+++ ./etc/X11/xdm/Xstartup 2024-08-09 11:27:04.390249591 +0200
|
||||
@@ -10,7 +10,7 @@
|
||||
#
|
||||
LIBDIR=/usr/lib/X11
|
||||
ETCDIR=/etc/X11
|
||||
- XDMDIR=${ETCDIR}/xdm
|
||||
+ XDMDIR=/usr/${ETCDIR}/xdm
|
||||
BINDIR=/usr/bin
|
||||
xmessage=${BINDIR}/xmessage
|
||||
NOLOGIN=/etc/nologin
|
||||
diff -u -r ../old/etc/X11/xdm/sys.xsession ./etc/X11/xdm/sys.xsession
|
||||
--- ../old/etc/X11/xdm/sys.xsession 2016-06-03 15:25:42.000000000 +0200
|
||||
+++ ./etc/X11/xdm/sys.xsession 2024-08-09 11:27:04.390249591 +0200
|
||||
@@ -38,10 +38,16 @@
|
||||
argv=("$@")
|
||||
set --
|
||||
|
||||
@ -49,7 +185,7 @@ diff -upr xdm.orig/etc/X11/xdm/sys.xsession xdm/etc/X11/xdm/sys.xsession
|
||||
case "${script##*/}" in
|
||||
.*) continue ;;
|
||||
*.rpm*) continue ;;
|
||||
@@ -63,7 +69,16 @@ done
|
||||
@@ -63,7 +69,16 @@
|
||||
#
|
||||
# Use system default xinitrc if the users does not have one.
|
||||
#
|
||||
@ -67,7 +203,7 @@ diff -upr xdm.orig/etc/X11/xdm/sys.xsession xdm/etc/X11/xdm/sys.xsession
|
||||
test -r "$HOME/.xinitrc" && XINITRCFILE="$HOME/.xinitrc"
|
||||
|
||||
if test -f "$XINITRCFILE" ; then
|
||||
@@ -77,7 +92,11 @@ else
|
||||
@@ -77,7 +92,11 @@
|
||||
# Source common code shared between the
|
||||
# X session and X init scripts
|
||||
#
|
||||
@ -80,9 +216,9 @@ diff -upr xdm.orig/etc/X11/xdm/sys.xsession xdm/etc/X11/xdm/sys.xsession
|
||||
unset STARTUP WINDOW_MANAGER
|
||||
|
||||
set -- ${1+"$@"} $WINDOWMANAGER
|
||||
diff -upr xdm.orig/etc/X11/xdm/xdm-config xdm/etc/X11/xdm/xdm-config
|
||||
--- xdm.orig/etc/X11/xdm/xdm-config 2020-08-26 15:36:22.290004407 +0200
|
||||
+++ xdm/etc/X11/xdm/xdm-config 2024-11-20 14:47:22.173192466 +0100
|
||||
diff -u -r ../old/etc/X11/xdm/xdm-config ./etc/X11/xdm/xdm-config
|
||||
--- ../old/etc/X11/xdm/xdm-config 2020-08-26 15:36:22.290004407 +0200
|
||||
+++ ./etc/X11/xdm/xdm-config 2024-08-09 11:27:04.390249591 +0200
|
||||
@@ -4,10 +4,10 @@
|
||||
DisplayManager.errorLogFile: /var/log/xdm.errors
|
||||
DisplayManager.pidFile: /run/xdm.pid
|
||||
@ -97,7 +233,7 @@ diff -upr xdm.orig/etc/X11/xdm/xdm-config xdm/etc/X11/xdm/xdm-config
|
||||
!
|
||||
! ATTENTION: `authName' should be in general MIT-MAGIC-COOKIE-1
|
||||
! For XDM-AUTHENTICATION-1 which is default for xterminals see
|
||||
@@ -27,16 +27,16 @@ DisplayManager._93.authorize: true
|
||||
@@ -27,16 +27,16 @@
|
||||
! The scripts handling the setup, the startup, the session its self,
|
||||
! and the reset of an X session.
|
||||
!
|
||||
@ -120,243 +256,9 @@ diff -upr xdm.orig/etc/X11/xdm/xdm-config xdm/etc/X11/xdm/xdm-config
|
||||
DisplayManager.*.terminateServer: false
|
||||
!
|
||||
! SECURITY: do not listen for XDMCP or Chooser requests
|
||||
diff -upr xdm.orig/etc/X11/xdm/Xreset xdm/etc/X11/xdm/Xreset
|
||||
--- xdm.orig/etc/X11/xdm/Xreset 2014-12-15 19:34:46.000000000 +0100
|
||||
+++ xdm/etc/X11/xdm/Xreset 2024-11-20 14:47:22.173192466 +0100
|
||||
@@ -10,7 +10,7 @@
|
||||
#
|
||||
LIBDIR=/usr/lib/X11
|
||||
ETCDIR=/etc/X11
|
||||
- XDMDIR=${ETCDIR}/xdm
|
||||
+ XDMDIR=/usr/${ETCDIR}/xdm
|
||||
BINDIR=/usr/bin
|
||||
xmessage=${BINDIR}/xmessage
|
||||
xconsole=${BINDIR}/xconsole
|
||||
diff -upr xdm.orig/etc/X11/xdm/Xresources xdm/etc/X11/xdm/Xresources
|
||||
--- xdm.orig/etc/X11/xdm/Xresources 2015-08-04 12:13:36.000000000 +0200
|
||||
+++ xdm/etc/X11/xdm/Xresources 2024-11-21 09:38:25.194243785 +0100
|
||||
@@ -10,37 +10,38 @@ xlogin*login.translations: #override\
|
||||
#undef linux
|
||||
#undef Linux
|
||||
#undef LINUX
|
||||
-xlogin*greeting: Welcome at CLIENTHOST
|
||||
+xlogin*greeting: CLIENTHOST
|
||||
xlogin*namePrompt: \040\040\040\040\040\040\040Login:
|
||||
xlogin*fail: Login incorrect
|
||||
|
||||
-#define FAMILY Serif
|
||||
+#define FAMILY Helvetica
|
||||
#if (WIDTH < 800)
|
||||
-xlogin*login.failFace: FAMILY-16:bold
|
||||
-xlogin*login.greetFace: FAMILY-18:italic
|
||||
-xlogin*login.promptFace: FAMILY-16:bold
|
||||
-xlogin*login.Font: FAMILY-16
|
||||
+xlogin*login.failFace: FAMILY-16:regular
|
||||
+xlogin*login.greetFace: FAMILY-18:regular
|
||||
+xlogin*login.promptFace: FAMILY-16:regular
|
||||
+xlogin*login.Font: FAMILY-16
|
||||
#else
|
||||
-xlogin*login.failFace: FAMILY-18:bold
|
||||
-xlogin*login.greetFace: FAMILY-24:italic
|
||||
-xlogin*login.promptFace: FAMILY-18:bold
|
||||
-xlogin*login.face: FAMILY-18
|
||||
+login*login.failFace: FAMILY-18:regular
|
||||
+xlogin*login.greetFace: FAMILY-24:bold
|
||||
+xlogin*login.promptFace: FAMILY-18:regular
|
||||
+xlogin*login.face: FAMILY-16
|
||||
#endif
|
||||
#undef FAMILY
|
||||
|
||||
#ifdef COLOR
|
||||
-xlogin*useShape: true
|
||||
-xlogin*greetColor: CadetBlue
|
||||
-xlogin*failColor: red
|
||||
-*Foreground: black
|
||||
-*Background: #c0c0c0
|
||||
-xlogin*borderWidth: 0
|
||||
-xlogin*frameWidth: 5
|
||||
-xlogin*innerFramesWidth: 2
|
||||
-xlogin*Foreground: black
|
||||
-xlogin*Background: #c0c0c0
|
||||
-xlogin*shdColor: #828282
|
||||
-xlogin*hiColor: #e0e0e0
|
||||
+xlogin*foreground: #6C6C6C
|
||||
+xlogin*background: #35968c
|
||||
+xlogin.Login.foreground: #9adcd5
|
||||
+xlogin.Login.greetColor: #9adcd5
|
||||
+xlogin.Login.promptColor: #97CC56
|
||||
+xlogin.Login.failColor: #9adcd5
|
||||
+xlogin.Login.failTimeout: 2
|
||||
+xlogin.Login.hiColor: #63bbb2
|
||||
+xlogin.Login.shdColor: #63bbb2
|
||||
+xlogin.Login.frameWidth: 2
|
||||
+xlogin.Login.innerFramesWidth: 1
|
||||
+xlogin.Login.sepWidth: 1
|
||||
+xlogin.Login.echoPasswd: true
|
||||
#else
|
||||
xlogin*useShape: false
|
||||
xlogin*borderWidth: 4
|
||||
@@ -59,6 +60,8 @@ xlogin*hiColor: black
|
||||
!#endif
|
||||
!xlogin*logoPadding: 10
|
||||
|
||||
+XConsole*background: black
|
||||
+XConsole*foreground: #9adcd5
|
||||
#if (WIDTH < 320)
|
||||
XConsole*geometry: 125x80-0-0
|
||||
XConsole*font: 5x7
|
||||
@@ -100,4 +103,4 @@ Chooser*Command.font: -*-new century sc
|
||||
!
|
||||
! Include system wide Xresources
|
||||
!
|
||||
-#include "/etc/X11/Xresources"
|
||||
+#include "/usr/etc/X11/Xresources"
|
||||
diff -upr xdm.orig/etc/X11/xdm/Xsession xdm/etc/X11/xdm/Xsession
|
||||
--- xdm.orig/etc/X11/xdm/Xsession 2021-01-04 15:20:27.548208000 +0100
|
||||
+++ xdm/etc/X11/xdm/Xsession 2024-11-20 14:47:22.173192466 +0100
|
||||
@@ -34,10 +34,18 @@ fi
|
||||
# Some system defaults
|
||||
#
|
||||
XETCDIR=/etc/X11
|
||||
- XDMDIR=$XETCDIR/xdm
|
||||
- XINITDIR=$XETCDIR/xinit
|
||||
+ XDMDIR=/usr/$XETCDIR/xdm
|
||||
: ${TMPDIR=/tmp}
|
||||
|
||||
+# xinitrc moved to %{_libexecdir}/xinit in xinit package
|
||||
+if [ -r /usr/libexec/xinit/xinitrc ]; then
|
||||
+ XINITDIR=/usr/libexec/xinit
|
||||
+elif [ -r /usr/lib/xinit/xinitrc ]; then
|
||||
+ XINITDIR=/usr/lib/xinit
|
||||
+else
|
||||
+ XINITDIR=$XETCDIR/xinit
|
||||
+fi
|
||||
+
|
||||
export OPENWINHOME TMPDIR
|
||||
test -n "$XAUTHORITY" || unset XAUTHORITY
|
||||
|
||||
@@ -187,7 +195,11 @@ sessions=( $XDMDIR/sys.xsession $XINITDI
|
||||
#
|
||||
# By default we set system defaults for the language
|
||||
#
|
||||
-. /etc/profile.d/lang.sh
|
||||
+if [ -r /etc/profile.d/lang.sh ]; then
|
||||
+ . /etc/profile.d/lang.sh
|
||||
+elif [ -r /usr/etc/profile.d/lang.sh ]; then
|
||||
+ . /usr/etc/profile.d/lang.sh
|
||||
+fi
|
||||
|
||||
#
|
||||
# Handle arguments given by xdm/kdm/gdm.
|
||||
@@ -261,7 +273,11 @@ readonly argv
|
||||
# No window manager? Get system default
|
||||
#
|
||||
if test -z "$WINDOWMANAGER" ; then
|
||||
- . /etc/profile.d/profile.sh
|
||||
+ if [ -r /etc/profile.d/profile.sh ]; then
|
||||
+ . /etc/profile.d/profile.sh
|
||||
+ elif [ -r /usr/etc/profile.d/profile.sh ]; then
|
||||
+ . /usr/etc/profile.d/profile.sh
|
||||
+ fi
|
||||
fi
|
||||
|
||||
#
|
||||
@@ -291,7 +307,12 @@ fi
|
||||
# Source common code shared between the
|
||||
# X session and X init scripts
|
||||
#
|
||||
-. /etc/X11/xinit/xinitrc.common
|
||||
+
|
||||
+if [ -r /etc/X11/xinit/xinitrc.common ]; then
|
||||
+ . /etc/X11/xinit/xinitrc.common
|
||||
+elif [ -r /usr/etc/X11/xinit/xinitrc.common ]; then
|
||||
+ . /usr/etc/X11/xinit/xinitrc.common
|
||||
+fi
|
||||
|
||||
# Restore arguments but skip window manager
|
||||
set -- "${argv[@]}"
|
||||
diff -upr xdm.orig/etc/X11/xdm/Xsetup xdm/etc/X11/xdm/Xsetup
|
||||
--- xdm.orig/etc/X11/xdm/Xsetup 2020-08-26 15:35:43.014615021 +0200
|
||||
+++ xdm/etc/X11/xdm/Xsetup 2024-11-21 09:38:57.287767888 +0100
|
||||
@@ -9,7 +9,7 @@
|
||||
#
|
||||
LIBDIR=/usr/lib/X11
|
||||
ETCDIR=/etc/X11
|
||||
- XDMDIR=${ETCDIR}/xdm
|
||||
+ BKGDIR=/usr/share/wallpapers/openSUSEdefault/contents/images
|
||||
BINDIR=/usr/bin
|
||||
|
||||
no_exit_on_failed_exec=1
|
||||
@@ -29,7 +29,7 @@ type cpp >/dev/null 2>&1 && cpp=
|
||||
# Store your preferred picture in XPM format (see xv(1) or ppm(5))
|
||||
# You can run gzip on the file BackGround.xpm to save disk space.
|
||||
#
|
||||
- background=${XDMDIR}/BackGround.xpm
|
||||
+ background=${BKGDIR}/1920x1200.png
|
||||
|
||||
#
|
||||
# Special screensaver parameters for xset, see manual page xset(1x).
|
||||
@@ -68,6 +68,7 @@ hostxkbmap=${ETCDIR}/Xkbmap.${DISPLAY%:*
|
||||
xrdb=${BINDIR}/xrdb
|
||||
backprg=${BINDIR}/BackGround
|
||||
qiv=${BINDIR}/qiv
|
||||
+ feh=${BINDIR}/feh
|
||||
# halporp=/usr/bin/hal-find-by-property
|
||||
xvkbd=${BINDIR}/xvkbd
|
||||
xvkbdargs="-compact -geometry -0-0 -xdm -always-on-top -keyfile /usr/share/X11/app-defaults/xvkbd.default"
|
||||
@@ -135,6 +136,8 @@ fi
|
||||
#
|
||||
if test "$xdm" = "no" ; then
|
||||
: # $xsetroot -solid '#738dc6'
|
||||
+elif test -s ${background} -a -x $feh ; then
|
||||
+ $feh --bg-scale ${background}
|
||||
elif test -s ${background}.gz -a -x $xpmroot ; then
|
||||
$xpmroot ${background}.gz
|
||||
elif test -s ${background} -a -x $xpmroot ; then
|
||||
@@ -184,7 +187,7 @@ if test "$xdm" = "yes" ; then
|
||||
#endif
|
||||
EOF
|
||||
else
|
||||
- $xrdb $cpp -override -retain ${ETCDIR}/Xresources
|
||||
+ $xrdb $cpp -override -retain ${XDMDIR}/Xresources
|
||||
fi
|
||||
|
||||
#
|
||||
@@ -206,6 +209,8 @@ if test -x $xmodmap -o -x $xkbcomp ; the
|
||||
cat $sysxkbmap | $xkbcomp - $DISPLAY
|
||||
elif test -r $sysmodmap ; then
|
||||
$xmodmap $sysmodmap
|
||||
+ elif test -r /usr/etc/X11/Xmodmap ; then
|
||||
+ $xmodmap /usr/etc/X11/Xmodmap
|
||||
fi
|
||||
else
|
||||
# TCP/IP connection (remote or local)
|
||||
@@ -213,6 +218,8 @@ if test -x $xmodmap -o -x $xkbcomp ; the
|
||||
cat $defxkbmap | $xkbcomp - $DISPLAY
|
||||
elif test -r $defmodmap ; then
|
||||
$xmodmap $defmodmap
|
||||
+ elif test -r /usr/etc/X11/Xmodmap.remote ; then
|
||||
+ $xmodmap /usr/etc/X11/Xmodmap.remote
|
||||
fi
|
||||
if test -s $hostxkbmap -a -x $xkbcomp ; then
|
||||
cat $hostxkbmap | $xkbcomp - $DISPLAY
|
||||
Only in xdm/etc/X11/xdm: Xsetup.orig
|
||||
Only in xdm/etc/X11/xdm: Xsetup.rej
|
||||
diff -upr xdm.orig/etc/X11/xdm/Xstartup xdm/etc/X11/xdm/Xstartup
|
||||
--- xdm.orig/etc/X11/xdm/Xstartup 2020-08-26 15:35:26.270871116 +0200
|
||||
+++ xdm/etc/X11/xdm/Xstartup 2024-11-20 14:47:22.173192466 +0100
|
||||
@@ -10,7 +10,7 @@
|
||||
#
|
||||
LIBDIR=/usr/lib/X11
|
||||
ETCDIR=/etc/X11
|
||||
- XDMDIR=${ETCDIR}/xdm
|
||||
+ XDMDIR=/usr/${ETCDIR}/xdm
|
||||
BINDIR=/usr/bin
|
||||
xmessage=${BINDIR}/xmessage
|
||||
NOLOGIN=/etc/nologin
|
||||
diff -upr xdm.orig/usr/lib/X11/display-manager xdm/usr/lib/X11/display-manager
|
||||
--- xdm.orig/usr/lib/X11/display-manager 2020-09-04 13:11:23.054517000 +0200
|
||||
+++ xdm/usr/lib/X11/display-manager 2024-11-20 14:47:22.173192466 +0100
|
||||
diff -u -r ../old/usr/lib/X11/display-manager ./usr/lib/X11/display-manager
|
||||
--- ../old/usr/lib/X11/display-manager 2020-09-04 13:11:23.054517000 +0200
|
||||
+++ ./usr/lib/X11/display-manager 2024-08-09 11:36:39.578216426 +0200
|
||||
@@ -13,11 +13,16 @@
|
||||
# /usr/lib/X11/display-manager
|
||||
#
|
||||
@ -377,7 +279,7 @@ diff -upr xdm.orig/usr/lib/X11/display-manager xdm/usr/lib/X11/display-manager
|
||||
|
||||
locale_vars=" \
|
||||
LANG \
|
||||
@@ -67,14 +72,14 @@ fi
|
||||
@@ -67,14 +72,14 @@
|
||||
unset DEFAULT_WM
|
||||
export WINDOWMANAGER
|
||||
|
||||
@ -394,7 +296,7 @@ diff -upr xdm.orig/usr/lib/X11/display-manager xdm/usr/lib/X11/display-manager
|
||||
# Do no try to start Xserver on platforms which may ship without
|
||||
# graphics card (bsc#1039497)
|
||||
if [ "$(arch)" == "aarch64" -o "$(arch)" == "ppc64le" ]; then
|
||||
@@ -87,8 +92,8 @@ xdm_reload_files () {
|
||||
@@ -87,8 +92,8 @@
|
||||
fi
|
||||
fi
|
||||
MD5DIR="/var/adm/SuSEconfig/md5" \
|
||||
@ -405,7 +307,7 @@ diff -upr xdm.orig/usr/lib/X11/display-manager xdm/usr/lib/X11/display-manager
|
||||
/bin/logger
|
||||
return 0
|
||||
fi
|
||||
@@ -130,6 +135,13 @@ case "$DM" in
|
||||
@@ -130,6 +135,13 @@
|
||||
exit 0
|
||||
;;
|
||||
*)
|
||||
@ -419,7 +321,7 @@ diff -upr xdm.orig/usr/lib/X11/display-manager xdm/usr/lib/X11/display-manager
|
||||
for i in /usr/lib/X11/displaymanagers/*
|
||||
do
|
||||
tmp=${i%.fallback}
|
||||
@@ -159,8 +171,8 @@ case "$1" in
|
||||
@@ -159,8 +171,8 @@
|
||||
start)
|
||||
|
||||
# use system keyboard as global X keyboard configuration
|
||||
@ -430,10 +332,10 @@ diff -upr xdm.orig/usr/lib/X11/display-manager xdm/usr/lib/X11/display-manager
|
||||
fi
|
||||
|
||||
[ -n "$STARTPROC" ] && $STARTPROC
|
||||
diff -upr xdm.orig/usr/lib/X11/displaymanagers/xdm xdm/usr/lib/X11/displaymanagers/xdm
|
||||
--- xdm.orig/usr/lib/X11/displaymanagers/xdm 2014-03-04 13:53:31.000000000 +0100
|
||||
+++ xdm/usr/lib/X11/displaymanagers/xdm 2024-11-20 14:47:22.173192466 +0100
|
||||
@@ -5,8 +5,8 @@ xdm_start_proc() {
|
||||
diff -u -r ../old/usr/lib/X11/displaymanagers/xdm ./usr/lib/X11/displaymanagers/xdm
|
||||
--- ../old/usr/lib/X11/displaymanagers/xdm 2014-03-04 13:53:31.000000000 +0100
|
||||
+++ ./usr/lib/X11/displaymanagers/xdm 2024-08-09 11:27:04.390249591 +0200
|
||||
@@ -5,8 +5,8 @@
|
||||
}
|
||||
|
||||
xdm_probe_proc() {
|
||||
|
18
xdm.changes
18
xdm.changes
@ -1,21 +1,3 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 27 13:07:24 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||
|
||||
- Split out displaymanager-sycconfig package: The central
|
||||
configuration part that is used by all display managers. This is
|
||||
needed in order to progress towards 'xdm' not acting as wrapper
|
||||
around DMs, but only be used as Dislplay Manager when XDM is
|
||||
supposed to be used, or use the real systemd services of the
|
||||
various DMs (e.g gdm.service, sddm.service).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 13:11:22 UTC 2024 - pgajdos@suse.com
|
||||
|
||||
- tweak the login screen:
|
||||
* use sans serif font
|
||||
* use branding wallpaper and colors
|
||||
* do not require xli, recommend feh
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 9 09:40:13 UTC 2024 - Thorsten Kukuk <kukuk@suse.com>
|
||||
|
||||
|
26
xdm.spec
26
xdm.spec
@ -57,13 +57,14 @@ BuildRequires: pkgconfig(xorg-macros) >= 1.4
|
||||
BuildRequires: pkgconfig(xpm)
|
||||
BuildRequires: pkgconfig(xt)
|
||||
BuildRequires: pkgconfig(xtrans)
|
||||
Requires: %fillup_prereq
|
||||
Requires: /sbin/startproc
|
||||
Requires: cpp
|
||||
Requires: logrotate
|
||||
Requires: sessreg
|
||||
Requires: xconsole
|
||||
Requires: xinit
|
||||
Recommends: feh
|
||||
Requires: xli
|
||||
Requires: xmessage
|
||||
Requires: xrdb
|
||||
Requires: xset
|
||||
@ -79,8 +80,6 @@ Requires: %{_bindir}/pidof
|
||||
%else
|
||||
Requires: /sbin/pidof
|
||||
%endif
|
||||
Requires: displaymanager-sysconfig
|
||||
Requires(post): displaymanager-sysconfig
|
||||
|
||||
%description
|
||||
Xdm manages a collection of X displays, which may be on the local host
|
||||
@ -97,17 +96,6 @@ This package contains the System desktop file which will cause
|
||||
the execution of a user provided $HOME/.xsession script or pick
|
||||
the system wide DM default set in %{_sysconfdir}/sysconfig/displaymanager.
|
||||
|
||||
%package -n displaymanager-sysconfig
|
||||
Summary: Central configuration for Display Managers
|
||||
Requires: %fillup_prereq
|
||||
|
||||
%description -n displaymanager-sysconfig
|
||||
openSUSE tries to concentrate common configuration of multiple display managers
|
||||
in a central place (/etc/sysconfig/displaymanager). The most relevant setting to
|
||||
configure there is AUTOLOGIN.
|
||||
|
||||
This package is required by the various display managers that integrate into the config hooks.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
cp %{SOURCE2} .
|
||||
@ -137,7 +125,7 @@ pushd %{buildroot}
|
||||
# SuSE default XDM configuration
|
||||
tar xf %{SOURCE1}
|
||||
%if 0%{?UsrEtcMove}
|
||||
patch -p1 < %{PATCH2}
|
||||
patch -p0 < %{PATCH2}
|
||||
mkdir -p usr%{_sysconfdir}/X11/xdm
|
||||
mv etc/X11/xdm/* usr%{_sysconfdir}/X11/xdm
|
||||
# Edited by SUSEConfig.xdm, package a copy
|
||||
@ -211,6 +199,7 @@ if [ $1 -eq 1 ] ; then
|
||||
fi
|
||||
fi
|
||||
%service_add_post display-manager.service
|
||||
%{fillup_only -n displaymanager}
|
||||
%{_sbindir}/update-alternatives --install %{_prefix}/lib/X11/displaymanagers/default-displaymanager \
|
||||
default-displaymanager %{_prefix}/lib/X11/displaymanagers/console 5
|
||||
%{_sbindir}/update-alternatives --install %{_prefix}/lib/X11/displaymanagers/default-displaymanager \
|
||||
@ -237,9 +226,6 @@ sed -i 's/DISPLAYMANAGER=.*//g' %{_sysconfdir}/sysconfig/displaymanager
|
||||
%preun
|
||||
%service_del_preun display-manager.service
|
||||
|
||||
%post -n displaymanager-sysconfig
|
||||
%{fillup_only -n displaymanager}
|
||||
|
||||
%files
|
||||
%license COPYING
|
||||
%doc AUTHORS ChangeLog README.md
|
||||
@ -277,6 +263,7 @@ sed -i 's/DISPLAYMANAGER=.*//g' %{_sysconfdir}/sysconfig/displaymanager
|
||||
%config(noreplace) %{_sysconfdir}/pam.d/xdm-np
|
||||
%endif
|
||||
%dir %{_localstatedir}/lib/xdm/
|
||||
%{_fillupdir}/sysconfig.displaymanager
|
||||
%{_localstatedir}/lib/xdm/authdir/
|
||||
%ghost %{_localstatedir}/log/xdm.errors
|
||||
%{_bindir}/chooser
|
||||
@ -295,7 +282,4 @@ sed -i 's/DISPLAYMANAGER=.*//g' %{_sysconfdir}/sysconfig/displaymanager
|
||||
%files xsession
|
||||
%{_datadir}/xsessions/xsession.desktop
|
||||
|
||||
%files -n displaymanager-sysconfig
|
||||
%{_fillupdir}/sysconfig.displaymanager
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user