Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions cmd/cli/clipboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ qubesome clip from-host -profile <name> - Copy clipboard contents from ho
&cli.StringArg{
Name: "target_profile",
UsageText: "Required when multiple profiles are active",
Min: 0,
Max: 1,
Destination: &targetProfile,
},
},
Expand Down Expand Up @@ -82,14 +80,10 @@ qubesome clip from-host -profile <name> - Copy clipboard contents from ho
Arguments: []cli.Argument{
&cli.StringArg{
Name: "source_profile",
Min: 1,
Max: 1,
Destination: &sourceProfile,
},
&cli.StringArg{
Name: "target_profile",
Min: 1,
Max: 1,
Destination: &targetProfile,
},
},
Expand Down Expand Up @@ -144,8 +138,6 @@ qubesome clip to-host -profile <name> - Copy clipboard contents from a sp
&cli.StringArg{
Name: "source_profile",
UsageText: "Required when multiple profiles are active",
Min: 0,
Max: 1,
Destination: &sourceProfile,
},
},
Expand Down
4 changes: 0 additions & 4 deletions cmd/cli/flatpak.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ qubesome flatpak run -profile <profile> org.kde.francis - Run the org.kde.fr
Arguments: []cli.Argument{
&cli.StringArg{
Name: "workload",
Min: 1,
Max: 1,
Destination: &workload,
},
},
Expand Down Expand Up @@ -71,8 +69,6 @@ qubesome flatpak install
&cli.StringArg{
Name: "profile",
Destination: &targetProfile,
Min: 1,
Max: 1,
},
},
Action: func(ctx context.Context, cmd *cli.Command) error {
Expand Down
2 changes: 0 additions & 2 deletions cmd/cli/host_run.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ qubesome host-run -profile <profile> firefox - Run firefox on the host and d
Arguments: []cli.Argument{
&cli.StringArg{
Name: "command",
Min: 1,
Max: 1,
Destination: &commandName,
},
},
Expand Down
2 changes: 0 additions & 2 deletions cmd/cli/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ qubesome run -profile <profile> chrome - Run the chrome workload on a specif
Arguments: []cli.Argument{
&cli.StringArg{
Name: "workload",
Min: 1,
Max: 1,
Destination: &workload,
},
},
Expand Down
2 changes: 0 additions & 2 deletions cmd/cli/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,6 @@ qubesome start -git https://github.com/qubesome/sample-dotfiles i3
Arguments: []cli.Argument{
&cli.StringArg{
Name: "profile",
Min: 1,
Max: 1,
Destination: &targetProfile,
},
},
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/go-git/go-git/v5 v5.16.0
github.com/google/uuid v1.6.0
github.com/stretchr/testify v1.10.0
github.com/urfave/cli/v3 v3.1.1
github.com/urfave/cli/v3 v3.3.3
github.com/zalando/go-keyring v0.2.6
golang.org/x/sys v0.33.0
golang.org/x/term v0.32.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXf
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
github.com/urfave/cli/v3 v3.1.1 h1:bNnl8pFI5dxPOjeONvFCDFoECLQsceDG4ejahs4Jtxk=
github.com/urfave/cli/v3 v3.1.1/go.mod h1:FJSKtM/9AiiTOJL4fJ6TbMUkxBXn7GO9guZqoZtpYpo=
github.com/urfave/cli/v3 v3.3.3 h1:byCBaVdIXuLPIDm5CYZRVG6NvT7tv1ECqdU4YzlEa3I=
github.com/urfave/cli/v3 v3.3.3/go.mod h1:FJSKtM/9AiiTOJL4fJ6TbMUkxBXn7GO9guZqoZtpYpo=
github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM=
github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw=
github.com/zalando/go-keyring v0.2.6 h1:r7Yc3+H+Ux0+M72zacZoItR3UDxeWfKTcabvkI8ua9s=
Expand Down