{"id":49982248,"url":"https://github.com/aviscaerulea/vdskswtch","last_synced_at":"2026-05-18T16:04:57.528Z","repository":{"id":349273197,"uuid":"1197647464","full_name":"aviscaerulea/vdskswtch","owner":"aviscaerulea","description":"CLI tool to switch Windows 11 virtual desktops with pre/post script hooks","archived":false,"fork":false,"pushed_at":"2026-04-05T03:57:05.000Z","size":109,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-05T05:22:41.814Z","etag":null,"topics":["automation","cli","cpp","virtual-desktop","windows","windows11"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aviscaerulea.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-31T18:56:56.000Z","updated_at":"2026-04-05T03:57:10.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/aviscaerulea/vdskswtch","commit_stats":null,"previous_names":["aviscaerulea/vdskswtch"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/aviscaerulea/vdskswtch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aviscaerulea%2Fvdskswtch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aviscaerulea%2Fvdskswtch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aviscaerulea%2Fvdskswtch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aviscaerulea%2Fvdskswtch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aviscaerulea","download_url":"https://codeload.github.com/aviscaerulea/vdskswtch/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aviscaerulea%2Fvdskswtch/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33183288,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"ssl_error","status_checked_at":"2026-05-18T09:27:28.300Z","response_time":71,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","cli","cpp","virtual-desktop","windows","windows11"],"created_at":"2026-05-18T16:04:56.284Z","updated_at":"2026-05-18T16:04:57.512Z","avatar_url":"https://github.com/aviscaerulea.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vdskswtch\n\nWindows 11 の仮想デスクトップを切り替える CLI ツール。\n\nメインとミーティング用の 2 つの仮想デスクトップを管理する。\nミーティング用デスクトップが存在しない場合は自動作成して切り替え、\n不要になったら削除してメインに戻る。\n\n## 動作要件\n\n- Windows 11 24H2（ビルド 26100 以降）\n\n## インストール\n\n[Releases](https://github.com/aviscaerulea/vdskswtch/releases) から最新の zip を取得し、\n`vdskswtch.exe` をパスの通ったディレクトリに配置する。\n\n## 使い方\n\n```\nvdskswtch               ミーティング用デスクトップに切り替え（switch のエイリアス）\nvdskswtch switch [name] ミーティング用デスクトップに切り替え（なければ作成）\nvdskswtch close  [name] ミーティング用デスクトップを削除してメインに戻る\nvdskswtch version       バージョンを表示\nvdskswtch help          ヘルプを表示\n```\n\nデスクトップ名のデフォルトは `Meeting`。`name` で任意の名前を指定できる。\n\n## 使用例\n\n```bash\n# ミーティング用デスクトップに切り替え（なければ \"Meeting\" という名前で作成）\nvdskswtch\n\n# 同上（明示的に switch コマンドを使う場合）\nvdskswtch switch\n\n# \"Work\" という名前のデスクトップに切り替え（なければ作成）\nvdskswtch switch Work\n\n# ミーティング用デスクトップを削除してメインに戻る\nvdskswtch close\n```\n\n## 設定ファイル\n\n`vdskswtch.exe` と同じディレクトリに `vdskswtch.toml` を配置すると、\nデスクトップ切り替え時にスクリプトを自動実行できる。\n\n```toml\n# switch 前に実行するコマンド\npre_exec = []\n\n# switch 後に実行するコマンド\npost_exec = [\"C:\\\\scripts\\\\start-meeting.bat\"]\n\n# close 時（デスクトップ削除前）に実行するコマンド\nclose_exec = [\"C:\\\\scripts\\\\end-meeting.bat\"]\n\n# 全仮想デスクトップにピン留めするプロセス名（大文字小文字不問）\n# 注意：ウィンドウ単位でのピン留めのため、アプリ再起動後は新しいウィンドウのピン留めが解除される\npin_apps = [\"Teams.exe\", \"Zoom.exe\"]\n```\n\n`vdskswtch.local.toml` を配置すると `vdskswtch.toml` の設定を上書きできる。\n\n## 注意事項\n\n- undocumented な Windows 内部 API を使用しているため、Windows Update により動作しなくなる場合がある。\n- switch/close コマンドは同時に 1 つのインスタンスのみ実行できる。既に実行中の場合は Toast 通知を表示して終了する。\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faviscaerulea%2Fvdskswtch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faviscaerulea%2Fvdskswtch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faviscaerulea%2Fvdskswtch/lists"}