@bobfrankston/msger 0.1.423 → 0.1.425

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/cli.js +5 -2
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -46,8 +46,11 @@ Options:
46
46
  -size <width,height> Set window size (e.g., -size 800,600)
47
47
  -zoom <percent> Set zoom level as percentage (e.g., -zoom 150 for 150%)
48
48
  -pos <x,y> Set window position (e.g., -pos 100,200)
49
- -screen <number> Screen index for multi-monitor (0=primary, 1=second, etc.). Offsets
50
- -pos into that screen, and picks which screen -fullscreen covers.
49
+ -screen <number> Screen index for multi-monitor. Offsets -pos into that screen,
50
+ and picks which screen -fullscreen covers. Indices follow the
51
+ physical layout (bottom row first, then left to right), NOT the
52
+ OS display numbering — index 0 is whichever monitor sorts first,
53
+ which is often NOT the primary. Run -list to see the mapping.
51
54
  -list Print the monitor layout as JSON and exit (no window). Indices
52
55
  match -screen: {"monitors":[{index,name,x,y,width,height,scale,primary}]}
53
56
  -icon <path> Set window icon (PNG file). Default: icon.png in current directory
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/msger",
3
- "version": "0.1.423",
3
+ "version": "0.1.425",
4
4
  "description": "Fast, lightweight, cross-platform message box - Rust-powered alternative to msgview",
5
5
  "type": "module",
6
6
  "main": "./index.js",