我试图绑定一些键来关闭PC,而不是在终端中写“ shutdown now”。
我在配置文件中将其保存到i3:
bindsym $mod+Shift+d exec shutdown now
这段代码不起作用。
当我按mod + shift + d时,这不是应该在终端“立即关闭”上写吗?
答案 0 :(得分:0)
尝试
bindsym $mod+Shift+d exec systemctl poweroff -i
我使用这种模式
set $mode_system System (l) lock, (e) logout, (r) reboot, (Shift+s) shutdown
mode "$mode_system" {
bindsym l exec --no-startup-id $Locker, mode "default"
bindsym e exec --no-startup-id i3-msg exit, mode "default"
bindsym r exec --no-startup-id systemctl reboot, mode "default"
bindsym Shift+s exec --no-startup-id systemctl poweroff -i, mode "default"
# back to normal: Enter or Escape
bindsym Return mode "default"
bindsym Escape mode "default"
}
bindsym $mod+y mode "$mode_system"