Pinebook Pro (i3 WM): Confirm Shutdown on Power Button
#1
I recently purchased the Pine Book Pro, and for the most part, I've really been enjoying it. However, I was wondering if there's a way to customize the behavior when the power button is pressed.

I'm running Manjaro (the i3 WM variant), and when the power button is pressed, it immediately shuts the system down. While this would normally be fine, the power button is unfortunately where the delete key is on my other machines, so I've hit it by mistake more than once.

Is there a way to configure the power button such that, when pressed, there's some confirmation, instead of an immediate power down?

Thank you for any help in this matter.
#2
I'm sorry, but I have to tell you, you are on wrong forum. This is the pinebook (the ancestor of pinebook pro) forum.

Try your question here: https://forum.pine64.org/forumdisplay.php?fid=111
#3
assuming a mod moves this...

disable the power button in systemd, then map the button in your i3 config.

i use wlogout on sway mapped to bindsym + shift + e inetead of the default and my power button does nothing. i keep pushing it by mistake...
#4
This is how I solved this in sway (wayland). I wanted power button to open be/dmenu with common actions (lock, suspend...).

1. Disable power button handling in logind.

/etc/systemd/logind.conf:
Code:
HandlePowerKey=ignore

2. Handle power button in sway.

~/.sway/config:
Code:
input "gpio-key-power" xkb_model "pc105"

bindsym XF86PowerOff exec seat

3. Add seat script to your path.

seat:
Code:
#!/bin/bash

cmd=`echo -e "lock\nlogout\nsuspend\npoweroff" | bemenu -l 10 -p 'seat>'`

case "$cmd" in

    lock)

        loginctl lock-session 

    ;;

    logout)

        loginctl terminate-session $XDG_SESSION_ID

    ;;

    suspend)

        systemctl suspend

    ;;

    poweroff)

        systemctl poweroff

    ;;

esac

5. For loginctl lock-session to work, you also need something like this (mainly the lock part).

~/.sway/config
Code:
exec swayidle -w \
          timeout 300 'swaylock -f -c 000000' \
          timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \
          before-sleep 'swaylock -f -c 000000' \
          lock 'swaylock -f -c 000000'


Possibly Related Threads…
Thread Author Replies Views Last Post
  Pinebook no longer boots rjtanner 12 584 04-13-2023, 01:09 PM
Last Post: tophneal
  Slarm64 on Pinebook [Slackware Arm - 64 bit] KRT 43 46,185 03-15-2023, 12:01 PM
Last Post: mara
  Stock Debian on original Pinebook moonwalkers 1 2,410 01-29-2022, 10:37 PM
Last Post: cel
  Write image to eMMC - Pinebook 11.6" irongarment 4 2,581 01-04-2022, 09:22 PM
Last Post: irongarment
  DietPi OS for Pinebook MichaIng 2 4,193 10-22-2021, 02:00 PM
Last Post: MichaIng
  E: The repository 'http://pinebook.kde.org.uk bionic Release' no longer has a Release pixelpaperyarn 3 4,183 05-07-2021, 10:20 AM
Last Post: tophneal
  pinebook.kde.org.uk no longer has release file?? supermassive 1 3,106 01-20-2021, 11:18 AM
Last Post: tophneal
Question Ran apt update on my Pinebook.. ford442 0 2,321 12-25-2020, 04:40 PM
Last Post: ford442
Information Manjaro ARM for Pinebook erchache2000 88 95,368 11-29-2020, 04:36 PM
Last Post: Mr.Fermer
  Pinebook is going the way of Betamax? trigger 10 13,809 11-01-2020, 02:02 PM
Last Post: leperotero

Forum Jump:


Users browsing this thread: 1 Guest(s)