I3 Power menu - Hibrernate not working

$mod + Shift + e - brings the powermenu up
logout and shutdown work
Hibernate and Lock - do not work. Any advice on how to make them work?
Thank you

do you change any configs for i3 or using defaults from install?

powermenu uses this commands:

systemctl poweroff
systemctl reboot
systemctl suspend
systemctl hibernate
~/.config/i3/scripts/blur-lock
i3-msg exit

you could try them from terminal to see if p.e. ~/.config/i3/scripts/blur-lock shows any issue error warning …

I think I added keyborad layout options. But that’s it(as far as I remember at the moment)

from terminal ~/.config/i3/scripts/blur-lock - works; and so does $mod + l

Here’s what systemctl hibernate returned:

@EndevourOS scripts]$ systemctl hibernate
Failed to hibernate system via logind: Not enough swap space for hibernation

that means you do not have a proper resume setup… so it can not work… may no swap or swap file used on installation.

but that the lock works from terminal and not over the menu is strange.
It is working generally… just tested…

you could try to make scripts for i3 executable again:

chmod -R +x /.config/i3/scripts

I get a spinning ball of colors. But nothing happens.

ok. is there a way to change this?

yes depending on what you setup for swap.

this could fix it

fdisk -l

Device             Start       End   Sectors   Size Type
/dev/nvme0n1p1      2048     18431     16384     8M Linux filesystem
/dev/nvme0n1p2     18432   1067007   1048576   512M Microsoft basic data
/dev/nvme0n1p3   1067008  64454655  63387648  30.2G Linux filesystem
/dev/nvme0n1p4  64454656 469958655 405504000 193.4G Linux filesystem
/dev/nvme0n1p5 469958656 488392031  18433376   8.8G Linux filesystem

Which looks like may be I have no swap file??

looks like swap partition to me :wink: better post fstab and grub configs:

cat /etc/fstab
cat /etc/default/grub | eos-sendlog << this will upload it to pastebin and give url you can post…

/etc/fstab:

# <file system>             <mount point>  <type>  <options>  <dump>  <pass>
UUID=71C2-2A78                            /boot          vfat    defaults,noatime 0 2
UUID=e4b9374d-a982-4a01-9c03-f5215779505a /              ext4    defaults,noatime 0 1
UUID=5a75144c-6cd4-44b2-9960-a999686c3167 /home          ext4    defaults,noatime 0 2

###Adding Debian drive
UUID=30ee8846-3b8d-4410-b1d1-729ec04f9386 /mnt/Debian11  auto rw,user,auto 0 0

and here’s the link to /etc/default/grub
https://clbin.com/u9yyt

so no swap no swap file …
but swap used on debian install? you could use the same swap partition for EndeavourOS ( not the best way if you use hibernation/suspend …) or go to create swapfile… or shrink a partition and add a swap partition… all involves some work to do…
I am now off from the desk for some hours …

ok thank you
I’ll proceed with caution…
Thank you