Search found 4 matches

by lilycollins34
Wed Sep 18, 2024 2:33 am
Forum: General Help
Topic: I want to complete the shutdown without entering a password.
Replies: 2
Views: 15573

Re: I want to complete the shutdown without entering a password.

To resolve your issues: Incredibox game Shutdown Without a Password: Ensure that your sudoers configuration is correctly set. Use sudo visudo and add: css Copy code username ALL=(ALL) NOPASSWD: /sbin/shutdown Replace username with your actual username. If you use a group, ensure the group name is co...
by lilycollins34
Mon Nov 13, 2023 9:04 am
Forum: General Help
Topic: Fresh install on RPi lxpannel not filling screen
Replies: 9
Views: 27878

Re: Fresh install on RPi lxpannel not filling screen

You are experiencing problems with the LXDE taskbar on Raspberry Pi that may be related to the control panel settings or a possible configuration issue.
Try reconfiguring LXPanel:
bash
Copy code
sudo dpkgSlope-reconfigure lxpanel
Follow the on-screen prompts to reconfigure the panel settings.
by lilycollins34
Mon Nov 13, 2023 9:00 am
Forum: General Help
Topic: I removed my window manager, cannot log back in to LXDE
Replies: 9
Views: 21844

Re: I removed my window manager, cannot log back in to LXDE

If LXDE uses a different window manager, you may need to install the appropriate package for that window manager insteadfnaf.
by lilycollins34
Mon May 15, 2023 4:29 am
Forum: General Help
Topic: lock screen automatically after time of idle
Replies: 4
Views: 11324

Re: lock screen automatically after time of idle

I love LXDE but I don't want to use xscreensaver. A simple script should be enough: #!/bin/bash while [ $(xprintidle) -le 6000 ] do #nothing, just wait done /usr/bin/dm-tool [url=https://bitlifeonline.com/]bitlife[/url] lock But: The problem is, how to restart it automatically, after unlocking? Can...