- Relocate themes to assets/themes/ and update all references. - Implement custom SDDM theme and Plymouth theme enhancements. - Add themed templates for Alacritty, Hyprland, Waybar, and other apps. - Introduce Makima key remapper module and configuration. - Add Voxtype and Walker configurations. - Implement systemd power management and timeout optimizations. - Add Nautilus-python extensions for LocalSend. - Update branding assets and ASCII art integration.
19 lines
449 B
Bash
Executable File
19 lines
449 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Check if hibernation is supported
|
|
if [[ ! -f /sys/power/image_size ]]; then
|
|
exit 1
|
|
fi
|
|
|
|
# Sum all swap sizes (excluding zram)
|
|
SWAPSIZE_KB=$(awk '!/Filename|zram/ {sum += $3} END {print sum+0}' /proc/swaps)
|
|
SWAPSIZE=$(( 1024 * ${SWAPSIZE_KB:-0} ))
|
|
|
|
HIBERNATION_IMAGE_SIZE=$(cat /sys/power/image_size)
|
|
|
|
if (( SWAPSIZE > HIBERNATION_IMAGE_SIZE )) && [[ -f /etc/mkinitcpio.conf.d/nnomarchy_resume.conf ]]; then
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|