FullScreenStatus
Detect programmatically if Sublime Text is running on full screen or distraction free mode
Details
Installs
- Total 3K
- Win 1K
- Mac 1K
- Linux 407
Jun 2 | Jun 1 | May 31 | May 30 | May 29 | May 28 | May 27 | May 26 | May 25 | May 24 | May 23 | May 22 | May 21 | May 20 | May 19 | May 18 | May 17 | May 16 | May 15 | May 14 | May 13 | May 12 | May 11 | May 10 | May 9 | May 8 | May 7 | May 6 | May 5 | May 4 | May 3 | May 2 | May 1 | Apr 30 | Apr 29 | Apr 28 | Apr 27 | Apr 26 | Apr 25 | Apr 24 | Apr 23 | Apr 22 | Apr 21 | Apr 20 | Apr 19 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
FullScreenStatus
FullScreenStatus is a Sublime Text plugin that is designed to be used by other plugins. It helps to detect if Sublime Text is running on full screen mode, distraction free mode or normal mode. Current Sublime Text version (ST 3 Build 3047) does not provide this information via its API.
Overview
Installation
Package Control
The preferred method of installation is via Sublime Package Control.
- Install Package Control
- Open command palette with Ctrl Shift P
- Type
install package
and hit return. A list of available packages will be displayed. - Type
FullScreenStatus
and hit return. The package will be downloaded into the appropriate directory.
Using Git
- Go to your
Packages
directory. You can locate yourPackages
directory by using the menu item Preferences > Browse Packages… Inside the
Packages
directory, clone FullScreenStatus repository using the command below:git clone https://github.com/maliayas/SublimeText_FullScreenStatus.git FullScreenStatus
Usage
import sublime
if sublime.active_window().settings().get('fss_on_full_screen'):
# ST is running on full screen.
if sublime.active_window().settings().get('fss_on_distraction_free'):
# ST is running on distraction free mode.
Source
Source code of this project is hosted at https://github.com/maliayas/SublimeText_FullScreenStatus. Contributions are welcome via pull requests.
License
FullScreenStatus is released under the MIT License.