Suspend doesn't work properly - Suspend is ok but doesn't wake up -needs a full boot from cold. Just use xscreensaver to blank screen after 10 minutes, and "shutdown -p now" when travelling etc. ================================================== Using i3 instead of DWM for easy access to menu to "lock", "logout", "reboot" & "shutdown" via config to add function via "mod-backspace": ----------------------------------------------------- # shutdown / restart / suspend... set $mode_system System (l) lock, (e) logout, (r) reboot, (CTRL+s) shutdown mode "$mode_system" { bindsym l exec --no-startup-id xscreensaver-command --lock, mode "default" bindsym e exec --no-startup-id i3-msg exit, mode "default" # bindsym s exec --no-startup-id i3lock && ~/bin/suspendi3.sh, mode "default" # bindsym h exec --no-startup-id i3lock && ~/hibernatei3.sh, mode "default" bindsym r exec --no-startup-id ~/bin/rebooti3.sh, mode "default" bindsym Ctrl+s exec --no-startup-id ~/bin/shutdowni3.sh, mode "default" # back to normal: Enter or Escape bindsym Return mode "default" bindsym Escape mode "default" } bindsym $mod+BackSpace mode "$mode_system" ----------------------------------------------------- =================================================================== Scripts need new #! bang path for bash: i.e.: #! /usr/local/bin/bash +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ for mounting android phone in "MTP" mode: Install jmtpfs: sudo pkg install fusefs-jmtpfs To mount it: sudo jmtpfs -o allow_other /media to unmount sudo umount /media ================================ mount USB pendrive: mount_msdos /dev/da0 ~/mnt ================================ Thunar doesn't show any Network servers... needs avahi sudo pkg install avahi then needs it to run at boot edit /etc/rc.conf... add: avahi_daemon_enable="YES" avahi_dsnconfd.enable="YES" =================================