Issues with xfce OpenRC 19 December 2024, 06:29:48 Yesterday i installed artix-base-openrc and xfce DE. I am having 3 issues. 1. When i am presented with lightdm gtk to login. I enter my password and then it blinks and ask for password again. after entering password for 2nd time. it shows me desktop screen.2. often librewolf stops launching and after logging in again, it starts to launch without changing anything.3. the screen brightness is always set to maximum after every restart.Please help.
Re: Issues with xfce OpenRC Reply #1 – 19 December 2024, 07:40:12 Quote1. When i am presented with lightdm gtk to login. I enter my password and then it blinks and ask for password again. after entering password for 2nd time. it shows me desktop screen.Do you have a hostname? Check /etc/hostname and /etc/hosts, they should be configured like so: https://wiki.artixlinux.org/Main/Installation#Network_configurationQuote2. often librewolf stops launching and after logging in again, it starts to launch without changing anything.This is very vague, maybe see if this happens again after solving the lightdm thing?Quote3. the screen brightness is always set to maximum after every restart.This is actually intended, if you want to save brightness then install backlight-openrc and enable it:Code: [Select]sudo rc-update add backlight default 1 Likes
Re: Issues with xfce OpenRC Reply #2 – 19 December 2024, 08:12:15 Quote from: MaxLPM – on 19 December 2024, 07:40:12Quote1. When i am presented with lightdm gtk to login. I enter my password and then it blinks and ask for password again. after entering password for 2nd time. it shows me desktop screen.Do you have a hostname? Check /etc/hostname and /etc/hosts, they should be configured like so: https://wiki.artixlinux.org/Main/Installation#Network_configurationQuote2. often librewolf stops launching and after logging in again, it starts to launch without changing anything.This is very vague, maybe see if this happens again after solving the lightdm thing?Quote3. the screen brightness is always set to maximum after every restart.This is actually intended, if you want to save brightness then install backlight-openrc and enable it:Code: [Select]sudo rc-update add backlight defaultokay i added backlight-openrc and brightness issue is solved. but i have hostname and hosts set correctly and issue still remains
Re: Issues with xfce OpenRC Reply #3 – 19 December 2024, 08:28:36 here is my xsession errors file text . i think issue might be presented here. please check and tell me.https://paste.artixlinux.org/view/497951c7
Re: Issues with xfce OpenRC Reply #4 – 19 December 2024, 09:23:20 Quotebut i have hostname and hosts set correctly and issue still remains Hm, this is weird. Seems like a common cause of this issue is the hostname, I can't really find anything else. What does running hostname from a terminal output?And it doesn't look like there's anything critical in the xsessionerrors, though the pulseaudio warning is a bit concerning. Do you have sound? Are you using pipewire or pulseaudio?
Re: Issues with xfce OpenRC Reply #5 – 19 December 2024, 09:36:03 Quote from: MaxLPM – on 19 December 2024, 09:23:20Quotebut i have hostname and hosts set correctly and issue still remains Hm, this is weird. Seems like a common cause of this issue is the hostname, I can't really find anything else. What does running hostname from a terminal output?And it doesn't look like there's anything critical in the xsessionerrors, though the pulseaudio warning is a bit concerning. Do you have sound? Are you using pipewire or pulseaudio?hostname command outputs systemhostname. no i downloaded pipewire and struggling to get it work. i have no sound. followed artix wiki and created .xinitrc file and pasted the commands but i still have no sound
Re: Issues with xfce OpenRC Reply #6 – 19 December 2024, 09:40:07 Quotefollowed artix wiki and created .xinitrc file and pasted the commands but i still have no sound What commands exactly? Post your .xinitrc
Re: Issues with xfce OpenRC Reply #7 – 19 December 2024, 09:48:01 Quote from: MaxLPM – on 19 December 2024, 09:40:07Quotefollowed artix wiki and created .xinitrc file and pasted the commands but i still have no sound What commands exactly? Post your .xinitrcCode: [Select]/usr/bin/pipewire & /usr/bin/pipewire-pulse & /usr/bin/wireplumber & exec openbox-session
Re: Issues with xfce OpenRC Reply #8 – 19 December 2024, 09:59:06 Quote exec openbox-sessionYou're using XFCE, not openbox, this line is basically trying to start a window manager that doesn't exist on your system. This is only an example from the wiki, you have to change it according to your use case, which means your .xinitrc should look like so:Code: [Select]/usr/bin/pipewire & /usr/bin/pipewire-pulse & /usr/bin/wireplumber &exec startxfce4Reboot and see if lightdm works normally nowEDIT: Hm, well actually it looks like lightdm doesn't even use .xinitrc, so this file shouldn't even matter. Sorry, I've never really worked with login managers, mostly use startx Last Edit: 19 December 2024, 10:56:46 by MaxLPM
Re: Issues with xfce OpenRC Reply #9 – 19 December 2024, 11:00:25 Quote from: MaxLPM – on 19 December 2024, 09:59:06Quote exec openbox-sessionYou're using XFCE, not openbox, this line is basically trying to start a window manager that doesn't exist on your system. This is only an example from the wiki, you have to change it according to your use case, which means your .xinitrc should look like so:Code: [Select]/usr/bin/pipewire & /usr/bin/pipewire-pulse & /usr/bin/wireplumber &exec startxfce4Reboot and see if lightdm works normally nowEDIT: Hm, well actually it looks like lightdm doesn't even use .xinitrc, so this file shouldn't even matter. Sorry, I've never really worked with login managers, mostly use startxit worked. after folowing it . now gets to desktop on just 1 login. however i gave up on pipewire and installed pulseaudio and removed xinitrc file and now sounds also works and lightdm problem solved too. 1 Likes