https://github.com/tksh164/displayscope
🔠Displayscope enables to use the apps on the out of sight screen.
https://github.com/tksh164/displayscope
display online-meetings presentation remote-work screen tool typescript windows
Last synced: 12 months ago
JSON representation
🔠Displayscope enables to use the apps on the out of sight screen.
- Host: GitHub
- URL: https://github.com/tksh164/displayscope
- Owner: tksh164
- License: mit
- Created: 2020-05-12T14:25:35.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2025-05-06T10:04:27.000Z (about 1 year ago)
- Last Synced: 2025-05-06T11:26:07.472Z (about 1 year ago)
- Topics: display, online-meetings, presentation, remote-work, screen, tool, typescript, windows
- Language: TypeScript
- Homepage:
- Size: 3.23 MB
- Stars: 17
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

Displayscope
Displayscope enables to use apps on out of sight screens.
## 🗨 About
Displayscope enables to use apps on out of sight screens such as display emulators, display dummy plugs and behind screens.

## 🎯 Use cases
Displayscope has two use cases.
### 1. Dedicated display for screen sharing in remote meetings
The screen sharing in remote meetings is consume one display for just the screen sharing (e.g. slide show, demo using entire screen, etc). In that case, you can get an emulated display by *[the display emulators/display dummy plugs](https://www.amazon.com/s?k=Display+Emulator)*, but it's can't see and can't control.
Displayscope provides view and control through the window to the emulated display. You can save a physical display for other purpose by using the emulated display for the screen sharing.
### 2. Control the demo screen in onsite presentations
Some time there are no preview screen in onsite presentations.
Displayscope provides view and control through the window to the screen. You can demo naturally through Displayscope even if the screen is at behind you.
## 📥 Install
### Install from GitHub (Recommended)
1. Download [the setup package](https://github.com/tksh164/displayscope/releases/latest). Currently supported only Windows.
- Select "Keep" if you get warning when the download is completed.
- After the download, unblock the download setup package file from the file's property or using Unblock-File cmdlet.
2. Run the setup package to install.
3. You can find Displayscope in the Start menu.
If you don't need Displayscope anymore, you can uninstall it from **Apps & features** in the Settings or **Uninstall a program** in the Control Panel.
## 🔨 Build from source
You can build Displayscope on Windows 11 24H2 x64 and later.
1. Install prerequisites using WinGet.
```powershell
winget install --id Microsoft.VisualStudio.2022.BuildTools --silent --override '--wait --quiet --add Microsoft.VisualStudio.Workload.VCTools --includeRecommended'
winget install --id OpenJS.NodeJS --silent
winget install --id Microsoft.Git --silent
```
2. Launch `Developer PowerShell for VS 2022` from Start menu.
3. Clone the Displayscope repository.
```Powershell
git clone https://github.com/tksh164/displayscope.git
```
4. Building the C++ codes.
```
cd .\displayscope\src\setmousecursorpos
nmake build
```
2. Building the Displayscope installer package.
```
cd ../app
npm install
npm run make
```
## 📃 Notes
- Displayscope prevents the screen from going to sleep during the external display showing. If you want to go to sleep on your PC, move back to the screen list view.
- Displayscope doesn't work correctly if you selected the *High-performance NVIDIA processor* as the **Preferred graphics processor** in the NVIDIA Control Panel. *Auto-select* and *Integrated graphics* are works well.
- The Displayscope's settings file located at `%AppData%\Displayscope\settings.json`. You can change the global shortcut keys through this file. See [here](https://www.electronjs.org/docs/api/accelerator#available-modifiers) for the acceptable shortcut key combination.
```json
"shortcutKeys": {
"returnMouseCursorToAppWindow": "Shift + Esc",
"navigateToScreenList": "Ctrl + Alt + Home", // Not works with v0.24.0. It will support in the future release.
"navigateToInteractiveScreen1": "Ctrl + Alt + F1",
"navigateToInteractiveScreen2": "Ctrl + Alt + F2",
"navigateToInteractiveScreen3": "Ctrl + Alt + F3",
"navigateToInteractiveScreen4": "Ctrl + Alt + F4",
"navigateToInteractiveScreen5": "Ctrl + Alt + F5",
"navigateToInteractiveScreen6": "Ctrl + Alt + F6",
"navigateToInteractiveScreen7": "Ctrl + Alt + F7",
"navigateToInteractiveScreen8": "Ctrl + Alt + F8",
"navigateToInteractiveScreen9": "Ctrl + Alt + F9"
}
```
## âš– License
Copyright (c) 2020-present Takeshi Katano. All rights reserved. This software is released under the [MIT License](https://github.com/tksh164/displayscope/blob/master/LICENSE).
Disclaimer: The codes stored herein are my own personal codes and do not related my employer's any way.