1 个不稳定版本

使用旧的 Rust 2015

0.1.0 2017年1月3日

#6#激活

MIT 许可证

8KB
179

Xraise

一个提升 X 窗口的命令,类似于以下 shell 脚本,但更快。

command="..."

while read line; do
  pid="$(echo "$line" | cut -d" " -f4)"
  if [ "x${command}" = "x$(cat "/proc/${pid}/cmdline")" ]; then
    window_id="$(echo "$line" | cut -d" " -f1)"
    exec wmctrl -i -R "$window_id"
  fi
done <<< "$(wmctrl -l -p)"

exec "${command}"

安装

$ cargo install xraise

用法

$ xraise
24183 /opt/google/chrome/chrome: 'GitHub - Google Chrome'
24183 /opt/google/chrome/chrome: 'LINE'
22179 /usr/lib/slack/slack: 'Slack - k0kubun'
26781 /usr/share/nocturn/Nocturn: 'Nocturn'
27546 urxvt: 'urxvt'

# Activate or launch slack, urxvt
$ xraise /usr/lib/slack/slack
$ xraise urxvt

# Activate or launch Google Chrome, LINE
$ xraise /opt/google/chrome/chrome "Google Chrome" # tail match
$ xraise /opt/google/chrome/chrome LINE

许可证

MIT 许可证

依赖

~610KB
~14K SLoC