Skip to content

Instantly share code, notes, and snippets.

@WildXav
Last active July 12, 2021 19:22
Show Gist options
  • Save WildXav/a638d72587d921f420bba253e05c0d3c to your computer and use it in GitHub Desktop.
Save WildXav/a638d72587d921f420bba253e05c0d3c to your computer and use it in GitHub Desktop.
Phosh lockscreen/app-grid background customization
/*
* ~/.config/gtk-3.0/gtk.css
* Restart phosh using "sudo systemctl restart phosh"
* Background image opacity is currently set to 30%. Decrease 0.7 values to increase background visibility.
*/
phosh-app-grid {
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
url('file:///home/lowkey/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/lowkey/Pictures/background.jpg');
background-size: cover;
background-position: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment