@@ -30,6 +30,12 @@ func clipboardCommand() *cli.Command {
3030 {
3131 Name : "from-host" ,
3232 Usage : "copies the clipboard contents from the host to a profile" ,
33+ Description : `Examples:
34+
35+ qubesome clip from-host - Copy clipboard contents from host to the active profile
36+ qubesome clip from-host -type image/png - Copy image from host clipboard to the active profile
37+ qubesome clip from-host -profile <name> - Copy clipboard contents from host to a specific profile
38+ ` ,
3339 Arguments : []cli.Argument {
3440 & cli.StringArg {
3541 Name : "target_profile" ,
@@ -54,7 +60,6 @@ func clipboardCommand() *cli.Command {
5460 }
5561
5662 if typ := c .String ("type" ); typ != "" {
57- fmt .Println (typ )
5863 opts = append (opts , clipboard .WithContentType (typ ))
5964 }
6065
@@ -102,7 +107,6 @@ func clipboardCommand() *cli.Command {
102107 }
103108
104109 if typ := c .String ("type" ); typ != "" {
105- fmt .Println (typ )
106110 opts = append (opts , clipboard .WithContentType (typ ))
107111 }
108112
@@ -114,6 +118,12 @@ func clipboardCommand() *cli.Command {
114118 {
115119 Name : "to-host" ,
116120 Usage : "copies the clipboard contents from a profile to the host" ,
121+ Description : `Examples:
122+
123+ qubesome clip to-host - Copy clipboard contents from the active profile to the host
124+ qubesome clip to-host -type image/png - Copy image from the active profile clipboard to the host
125+ qubesome clip to-host -profile <name> - Copy clipboard contents from a specific profile to the host
126+ ` ,
117127 Arguments : []cli.Argument {
118128 & cli.StringArg {
119129 Name : "source_profile" ,
0 commit comments