Troubleshooting
Common issues and solutions for sysc-greet.
Common issues and solutions for sysc-greet.
Greeter Won't Start
Check greetd Service Status
sudo systemctl status greetdExpected output: Active: active (running)
If inactive, start the service:
sudo systemctl start greetdView greetd Logs
journalctl -u greetd -n 50Look for:
- IPC socket creation errors
- Permission denied errors
- Compositor startup failures
Verify Configuration
Check that greetd config exists at /etc/greetd/config.toml:
cat /etc/greetd/config.tomlExpected content:
[terminal]
vt = 1
[default_session]
command = "niri -c /etc/greetd/niri-greeter-config.kdl"
user = "greeter"IPC Client Errors
"FATAL: Failed to create IPC client"
This error means sysc-greet cannot communicate with greetd.
Causes:
- Running sysc-greet directly without greetd (not in production mode)
GREETD_SOCKenvironment variable not set- greetd socket doesn't exist
Solutions:
-
Verify greetd is running:
sudo systemctl status greetd -
Check if socket exists:
ls -la /run/greetd/ -
Test with greetd directly:
sudo -u greeter sysc-greet
Wallpaper Issues
gSlapper Not Working
Check gSlapper status:
ps aux | grep gslapperView gSlapper debug log:
cat /tmp/sysc-greet-wallpaper.logVerify compositor config starts gSlapper:
# For niri
cat /etc/greetd/niri-greeter-config.kdl
# For cagebreak
cat /etc/greetd/cagebreak-greeter-config
# For sway
cat /etc/greetd/sway-greeter-config
# For hyprland
cat /etc/greetd/hyprland-greeter-config.confLook for gSlapper startup command.
Install gSlapper if missing:
# Arch Linux
sudo pacman -S gslapper
# Build from source
git clone https://github.com/Nomadcxx/gSlapper
cd gSlapper
make
sudo make installWallpapers Not Appearing
Check for themed wallpapers:
ls -la /usr/share/sysc-greet/wallpapers/Ensure sysc-greet-{theme}.png files exist for your selected theme.
Check permissions:
ls -la /var/lib/greeter/Pictures/wallpapers/
sudo chown -R greeter:greeter /var/lib/greeter/Pictures/wallpapers/Compositor Issues
Screen Remains Black
Check compositor logs:
Compositors run as user processes, not systemd services. Check greetd logs which include compositor output:
journalctl -u greetd -n 50For compositor-specific debugging, check their log files or stderr output in greetd logs.
Verify compositor config syntax:
# Test niri config
niri -c /etc/greetd/niri-greeter-config.kdl --check
# Test hyprland config (syntax check)
Hyprland --check-config -c /etc/greetd/hyprland-greeter-config.confCagebreak has no syntax-check flag. Run it from a TTY to see parse errors — a bad config makes it exit immediately, so greetd relaunches the greeter in a loop:
cagebreak -e -c /etc/greetd/cagebreak-greeter-configStuck at a black screen after login (cagebreak): verify socat is installed. Without it the compositor never quits and greetd waits forever.
Kitty Terminal Issues
If kitty doesn't start:
# Check kitty config exists
cat /etc/greetd/kitty.conf
# Test kitty independently
kitty --config /etc/greetd/kitty.confDebug Mode
Enable debug logging to diagnose issues:
sysc-greet --test --debugView debug log:
cat /tmp/sysc-greet-debug.logDebug logs include:
- Key press events
- Mode transitions
- Animation state changes
- IPC communication
- Wallpaper commands
Cache Issues
If preferences aren't being saved:
# Check cache directory exists and has correct permissions
ls -la /var/cache/sysc-greet/
sudo chown -R greeter:greeter /var/cache/sysc-greet/
sudo chmod 755 /var/cache/sysc-greet/Clear cache if needed:
sudo rm -rf /var/cache/sysc-greet/*Getting Help
For unresolved issues:
- Check existing GitHub Issues
- Enable debug mode and collect logs
- Review Architecture Documentation
- Check greetd documentation: https://git.sr.ht/~kennylevinsen/greetd/
