From 62d3c8aa55e4b209ffff557047718331a9c19ce1 Mon Sep 17 00:00:00 2001 From: luckyturtledev Date: Tue, 24 Oct 2023 13:45:35 +0200 Subject: [PATCH] fix --- more-wallpapers/src/linux/sway.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/more-wallpapers/src/linux/sway.rs b/more-wallpapers/src/linux/sway.rs index c565fc6..586201e 100644 --- a/more-wallpapers/src/linux/sway.rs +++ b/more-wallpapers/src/linux/sway.rs @@ -10,7 +10,7 @@ use std::{io::StdoutLock, process::Command}; #[derive(Deserialize, Debug)] struct OutputScreens { id: usize, - current_mode: String, + current_mode: OutputMode, active: bool, }