• 7 Posts
  • 16 Comments
Joined 2 years ago
cake
Cake day: December 30th, 2023

help-circle






  • Nice. I will try the systemd unit. Meanwhile, i have added a loop in the script, which helps a little bit:

    maxwait=15
    if [[ $(nm-online -x) != *"online"* ]]; then
    	echo "missing internet connection, waiting..."
    	for (( i = 1; i <= maxwait; ++i )); do
    		sleep 1 &
    		echo $i
    		if [[ $(nm-online -x) == *"online"* ]]; then
    			break
    		fi
    
    		if [[ $i -eq $maxwait ]]; then
    			echo "No internet connection"
    			exit 1
    		fi
    		wait
    	done 
    fi
    

    In my test, this exits the script after 15 seconds without connection, but continues, when the connection is available or is established within this time.

    But i think, its a nice idea, to add this to the script AND use the systemd unit together.




  • MoLoPoLY@discuss.tchncs.deOPtoArch Linux@lemmy.mlGames no longer start under steam
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    1
    ·
    2 months ago

    I uninstalled Steam with pacman -Runs steam. After that there were still several folders within my home. I removed these and then installed steam with pacman -Syu steam aga in. Luckily I didn’t need to reinstall the games as they are installed on a separate partition. I simply remounted the library and can now start the games without any error messages. Thanks for your help.

    BTW: Whats the difference between pacman -Rns and pacman -Runs? What does u mean?













  • Hmm sounds like a Webmail client, like Roundcube. Luckily (at least from my point of view) it has no ‘unified inbox’, but you can have as many mail accounts you want, with one login, from different vendors. You can selhost it easily. I use it on a Raspberry Pi with one login and have then access to gmail, yahoo and some other accounts.

    To mimic a ‘unified inbox’ you can forward all the different accounts, to one ‘major’ account, so that you receive every mail in this inbox. Than you can create a ‘sending alias’, to answer the incoming mails with the proper SMTP service. Nothing easier than that with Roundcube.