bash – 从具有特定窗口坐标的命令行启动Google Chrome

我正在尝试找到一个 shell命令,它将打开具有特定x和y坐标的Google Chrome(这样我可以在打开窗口时设置窗口的位置.)可以使用命令行参数来执行此操作吗?

我需要修改以下命令才能实现:

google-chrome http://www.google.com/

http://peter.sh/experiments/chromium-command-line-switches/说–window-position = x,y是你要找的东西.

在几年前的更新中,包括几年前我写的一个小shell脚本(但在回答了这个问题之后),它提供了如何使用自定义窗口大小/位置启动chrome的示例,并且能够通过名称创建“假的”用户数据目录.

它可能或可能不会工作,并设置了一些危险的选项,但你得到的想法..不要使用这个逐字,一些标志可能已被重命名或完全删除..(像socks代理命令)

#!/bin/bash -x

FAKEUSER="${1:-fake-chrome-user}"
CHROMEROOT=$HOME/.chromeroot/

mkdir -p ${CHROMEROOT}

export PROFILE="${CHROMEROOT}/${FAKEUSER}-chromium-profile"
export disK_CACHEDIR="${CHROMEROOT}/${FAKEUSER}-chromium-profile-cache"
export disK_CACHESIZE=4096
export MEDIA_CACHESIZE=4096

ParaNOID_OPTIONS="\
        --no-displaying-insecure-content \
        --no-referrers \
        --disable-zero-suggest \
        --disable-sync  \
        --cipher-suite-blacklist=0x0004,0x0005,0xc011,0xc007 \
        --enable-sandBox-logging >/dev/null 2>&1
        "


/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome \
        --remember-cert-error-decisions \
        --ignore-certificate-errors \
        --ignore-urlfetcher-cert-requests \
        --allow-running-insecure-content \
        --window-position=2400,400 \
        --window-size=1500,1000 \
        --no-pings \
        --user-data-dir=${PROFILE} \
        --disk-cache-dir=${disK_CACHEDIR} \
        --disk-cache-size=${disK_CACHESIZE} \
        --media-cache-size=${MEDIA_CACHESIZE} \
        2>&1


#--proxy-server="socks4://localhost:30604" \
#--host-resolver-rules="MAP * 0.0.0.0,EXCLUDE localhost" \

相关文章

用的openwrt路由器,家里宽带申请了动态公网ip,为了方便把2...
#!/bin/bashcommand1&command2&wait从Shell脚本并行...
1.先查出MAMP下面集成的PHP版本cd/Applications/MAMP/bin/ph...
1、先输入locale-a,查看一下现在已安装的语言2、若不存在如...
BashPerlTclsyntaxdiff1.进制数表示Languagebinaryoctalhexa...
正常安装了k8s后,使用kubect工具后接的命令不能直接tab补全...