Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LuckyTurtleDev committed Feb 19, 2024
1 parent c0d04ec commit 809b0f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion more-wallpapers/src/linux/xfce.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub(crate) fn get_screens() -> Result<Vec<Screen>, WallpaperError> {
fn load_property(property: &str) -> Result<String, WallpaperError> {
let mut command = Command::new("xfconf-query");
command.args(["--channel", "xfce4-desktop", "-p"]);
command.arg(property);
command.arg(format!("/backdrop/{property}"));
let output = run_command(command)?;
let output = String::from_utf8(output).unwrap();
Ok(output)
Expand Down

0 comments on commit 809b0f3

Please sign in to comment.