My dotfiles
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

13 行
383 B

  1. #!/bin/sh
  2. #Detect the name of the display in use
  3. display=":$(find /tmp/.X11-unix/* | sed 's#/tmp/.X11-unix/X##' | head -n 1)"
  4. #Detect the user using such display
  5. user="$(who | grep "tty1" | awk '{print $1}' | head -n 1)"
  6. #Detect the id of the user
  7. uid="$(id -u "$user")"
  8. sudo -u "$user" DISPLAY="$display" DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/"$uid"/bus notify-send "$@"