mfs' nibbles

Tag: archlinux


2022-04-03

I occasionally manage to lock myself out of my workstation for ten minutes due to three incorrect password attempts. This is due to pam_faillock. If I don't want to wait the ten minutes it's possible to login as root and clear the lock with:

faillock --user mfs --reset

tags: archlinux


2022-03-18

I wanted to start using some features from the latest xmonad which wasn't in Arch Linux's repos so have started using xmonad-git and xmonad-contrib-git from the AUR. When updating any Haskell packages these packages require rebuilding. My steps to do this using the yaah AUR helper:

$ yaah xmonad-git
$ yaah xmonad-contrib-git

$ cd xmonad-git
$ makepkg
$ sudo pacman -U xmonad-git-...

$ cd ../xmonad-contrib-git
$ makepkg
$ sudo pacman -U xmonad-contrib-git-...

$ xmonad --recompile

tags: xmonad haskell archlinux