Skip to content

Commit

Permalink
Swap colors of inactive and hidden desktops
Browse files Browse the repository at this point in the history
  • Loading branch information
thled committed Oct 31, 2022
1 parent 0cb0b56 commit e19f70c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ fn workspaces() -> Pager {
bg_color: Some(xcolor::blue()),
..default_attr()
};
let hidden_attr = Attributes {
let inactive_attr = Attributes {
fg_color: xcolor::blue(),
..default_attr()
};

Pager::new(active_attr, default_attr(), hidden_attr)
Pager::new(active_attr, inactive_attr, default_attr())
}

fn window_title() -> ActiveWindowTitle {
Expand Down

0 comments on commit e19f70c

Please sign in to comment.