Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
DanNixon committed Aug 20, 2024
1 parent c2e1937 commit f98f7d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion overlays/pkgs/sway-helper/src/commands/rename_workspace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ impl CliRun for RenameWorkspace {
fn run(&self, sway: &mut swayipc::Connection) -> crate::Result<()> {
// Get a list of all the workspace names, with the focused workspace at the front (allowing
// fastest access to editing).
let workspace_names = get_workspace_names(sway, FocusedWorkspacePosition::Front);
let workspace_names = get_workspace_names(sway, FocusedWorkspacePosition::Front)?;

// Fuzzy select a workspace.
let selected = crate::helpers::run_fzf("workspace to rename", workspace_names);
Expand Down

0 comments on commit f98f7d8

Please sign in to comment.