Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Jun 2020 21:18:28 +0000
From:      bugzilla-noreply@freebsd.org
To:        xfce@FreeBSD.org
Subject:   [Bug 244290] x11-wm/xfce4 does not see up arrow after reinstall
Message-ID:  <bug-244290-28711-AWuZaQmBER@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-244290-28711@https.bugs.freebsd.org/bugzilla/>
References:  <bug-244290-28711@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D244290

--- Comment #40 from Samy Mahmoudi <samy.mahmoudi@gmail.com> ---
(In reply to Guido Falsi from comment #38)

> I don't have a full grasp of all the freedesktop.org standards and tools,=
 like consolekit and the like.
I was struggling with ConsoleKit before landing to this PR...

> Exactly how do you start xfce from console?
I use a mere startx, together with my .xinitrc:

#!/bin/sh
# SLiM now starts Consolekit
# Xfce now starts DBus

# Temporary workaround
# setxkbmap -model pc105 -layout fr,ru -option
grp:alt_space_toggle,terminate:ctrl_alt_bksp

DB=3D"dbus-launch --exit-with-session"
CK=3D"ck-launch-session"

case $1 in
   slim-autologin)
   # Separates SLiM autologin from vt launch.
   # Requires patching SLiM, or SLiM autologin default to *) below !
      exec startxfce4
      ;;
   default)
   # SLiM default session (To set a system-wide default session, override
"default" in slim.conf).
      exec startxfce4
      ;;
   startxfce4)
      exec startxfce4
      ;;
   mate-session)
      exec ${DB} mate-session
      ;;
   lxde)
      exec ${DB} startlxde
      ;;
   kodi-standalone)
      exec kodi-standalone
      ;;
   *)
      # exec ${CK} ${DB} openbox-session=20
      exec startxfce4 --with-ck-launch
      ;;
esac

> In such case I think the correct command is: startxfce4 --with-ck-launch
You are absolutely right, that is the way to start Xfce from the virtual
consoles (and that is basically what is done when I run startx).

> Also, being xfwm4 a compositing window manager
I have heard about xfwm4 using Xpresent and being an OpenGL compositor in a
mate pull request, inspiring mate guys ;-)

> I'm not sure if using also compiz at the same time is supported or they c=
ould conflict in certain situations.
I have replaced xfwm4 with compiz for years (by overriding xfce4-session.xm=
l).
So far so good!

> What is the exact setxkbmap command you are running?
setxkbmap -model pc105 -layout fr,ru -option
grp:alt_space_toggle,terminate:ctrl_alt_bksp

> Also, what locale have you setup in your environment? That could be affec=
ting things.
I have written a French login class in login.conf to have LANG=3Dfr_FR.UTF-=
8 in
my environment. I will investigate further on this particular aspect.

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-244290-28711-AWuZaQmBER>