From 565aa03429039f16840385022420224392bc91e1 Mon Sep 17 00:00:00 2001 From: Renner0E <80410025+Renner0E@users.noreply.github.com> Date: Fri, 12 Jan 2024 18:31:55 +0100 Subject: [PATCH] feat(just): added journalctl things to 00-default.just (#176) Co-authored-by: Jorge O. Castro --- build/ublue-os-just/00-default.just | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build/ublue-os-just/00-default.just b/build/ublue-os-just/00-default.just index b39d4a4b..f8706b52 100644 --- a/build/ublue-os-just/00-default.just +++ b/build/ublue-os-just/00-default.just @@ -7,6 +7,14 @@ shell := `grep :$(id -u): /etc/passwd | cut -d: -f7` bios: systemctl reboot --firmware-setup +# Show all messages from this boot +logs-this-boot: + sudo journalctl -b 0 + +# Show all messages from last boot +logs-last-boot: + sudo journalctl -b -1 + # Change the user's shell chsh new_shell: #!/usr/bin/bash