10-04-2024, 04:17 AM
(09-25-2024, 05:11 AM)biketool Wrote: Is it at this time possible to set a custom lockscreen and/or desktop/background on mobian Trixie?https://wiki.debian.org/Mobian/Tweaks#Ch...nd_monitor
There is the option in settings but it didn't change anything except under some loading apps where the load screen is not present.
Change the background for the lock screen, app grid and monitor
To change the background for the app grid and/or lock screen, you need to create a file ~/.config/gtk-3.0/gtk.css. Here is an example css file:
Code:
/*
* ~/.config/gtk-3.0/gtk.css
* Restart phosh using "sudo systemctl restart phosh"
*/
phosh-app-grid {
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
url('file:///home/mobian/Pictures/background.jpg');
background-size: cover;
background-position: center;
}
phosh-lockscreen, .phosh-lockshield {
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
url('file:///home/mobian/Pictures/background.jpg');
background-size: cover;
background-position: center;
}
To change background of a monitor/background while loading an app run this command:
- gsettings set org.gnome.desktop.background picture-uri file:///home/mobian/Pictures/background.jpg