test/config: add hyprland-workspaces config
This commit is contained in:
parent
f4da203915
commit
e1a6d513cc
|
@ -117,3 +117,42 @@ TEST_CASE("Load multiple bar config with include", "[config]") {
|
|||
REQUIRE(data.size() == 4);
|
||||
REQUIRE(data[0]["output"].asString() == "OUT-0");
|
||||
}
|
||||
|
||||
TEST_CASE("Load Hyprland Workspaces bar config", "[config]") {
|
||||
waybar::Config conf;
|
||||
conf.load("test/config/hyprland-workspaces.json");
|
||||
|
||||
auto& data = conf.getConfig();
|
||||
auto hyprland = data[0]["hyprland/workspaces"];
|
||||
auto hyprland_window_rewrite = data[0]["hyprland/workspaces"]["window-rewrite"];
|
||||
auto hyprland_format_icons = data[0]["hyprland/workspaces"]["format-icons"];
|
||||
auto hyprland_persistent_workspaces = data[0]["hyprland/workspaces"]["persistent-workspaces"];
|
||||
|
||||
REQUIRE(data.isArray());
|
||||
REQUIRE(data.size() == 1);
|
||||
REQUIRE(data[0]["height"].asInt() == 20);
|
||||
REQUIRE(data[0]["layer"].asString() == "bottom");
|
||||
REQUIRE(data[0]["output"].isArray());
|
||||
REQUIRE(data[0]["output"][0].asString() == "HDMI-0");
|
||||
REQUIRE(data[0]["output"][1].asString() == "DP-0");
|
||||
|
||||
REQUIRE(hyprland["active-only"].asBool() == true);
|
||||
REQUIRE(hyprland["all-outputs"].asBool() == false);
|
||||
REQUIRE(hyprland["move-to-monitor"].asBool() == true);
|
||||
REQUIRE(hyprland["format"].asString() == "{icon} {windows}");
|
||||
REQUIRE(hyprland["format-window-separator"].asString() == " ");
|
||||
REQUIRE(hyprland["on-scroll-down"].asString() == "hyprctl dispatch workspace e-1");
|
||||
REQUIRE(hyprland["on-scroll-up"].asString() == "hyprctl dispatch workspace e+1");
|
||||
REQUIRE(hyprland["show-special"].asBool() == true);
|
||||
REQUIRE(hyprland["window-rewrite-default"].asString() == "");
|
||||
REQUIRE(hyprland["window-rewrite-separator"].asString() == " ");
|
||||
REQUIRE(hyprland_format_icons["1"].asString() == "");
|
||||
REQUIRE(hyprland_format_icons["2"].asString() == "");
|
||||
REQUIRE(hyprland_format_icons["3"].asString() == "");
|
||||
REQUIRE(hyprland_format_icons["default"].asString() == "");
|
||||
REQUIRE(hyprland_format_icons["empty"].asString() == "");
|
||||
REQUIRE(hyprland_format_icons["urgent"].asString() == "");
|
||||
REQUIRE(hyprland_persistent_workspaces["1"].asString() == "HDMI-0");
|
||||
REQUIRE(hyprland_window_rewrite["title<Steam>"].asString() == "");
|
||||
REQUIRE(hyprland["sort-by"].asString() == "number");
|
||||
}
|
||||
|
|
|
@ -0,0 +1,37 @@
|
|||
[
|
||||
{
|
||||
"height": 20,
|
||||
"layer": "bottom",
|
||||
"output": [
|
||||
"HDMI-0",
|
||||
"DP-0"
|
||||
],
|
||||
"hyprland/workspaces": {
|
||||
"active-only": true,
|
||||
"all-outputs": false,
|
||||
"show-special": true,
|
||||
"move-to-monitor": true,
|
||||
"format": "{icon} {windows}",
|
||||
"format-window-separator": " ",
|
||||
"format-icons": {
|
||||
"1": "",
|
||||
"2": "",
|
||||
"3": "",
|
||||
"default": "",
|
||||
"empty": "",
|
||||
"urgent": ""
|
||||
},
|
||||
"persistent-workspaces": {
|
||||
"1": "HDMI-0"
|
||||
},
|
||||
"on-scroll-down": "hyprctl dispatch workspace e-1",
|
||||
"on-scroll-up": "hyprctl dispatch workspace e+1",
|
||||
"window-rewrite": {
|
||||
"title<Steam>": ""
|
||||
},
|
||||
"window-rewrite-default": "",
|
||||
"window-rewrite-separator": " ",
|
||||
"sort-by": "number"
|
||||
}
|
||||
}
|
||||
]
|
Loading…
Reference in New Issue