[bugfix] prefer width / height default value
This commit is contained in:
parent
ebb9d37357
commit
e6339ae552
4
bin/sc
4
bin/sc
|
@ -31,8 +31,8 @@ end
|
||||||
set --append subcmds prepare
|
set --append subcmds prepare
|
||||||
set prepare_help '[w=1920] [h=1080]' 'create virtual monotors if physical size is higher than specified'
|
set prepare_help '[w=1920] [h=1080]' 'create virtual monotors if physical size is higher than specified'
|
||||||
function prepare -a pw ph
|
function prepare -a pw ph
|
||||||
set -q pw || set pw 1920
|
test -z $pw && set pw 1920
|
||||||
set -q ph || set pw 1080
|
test -z $ph && set ph 1080
|
||||||
set moninfo (xrandr | grep ' primary')
|
set moninfo (xrandr | grep ' primary')
|
||||||
|
|
||||||
if not set whxy (string match -r '([0-9]+)x([0-9]+)\+([0-9]+)\+([0-9]+)' $moninfo)
|
if not set whxy (string match -r '([0-9]+)x([0-9]+)\+([0-9]+)\+([0-9]+)' $moninfo)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user