# Hype Skeptic: Testing Hyprland - System Crafters Live!

**URL:** https://forum.systemcrafters.net/t/hype-skeptic-testing-hyprland-system-crafters-live/288
**Category:** General
**Created:** [February 16, 2024, 4:12pm UTC](https://forum.systemcrafters.net/t/hype-skeptic-testing-hyprland-system-crafters-live/288 "2024-02-16T16:12:55Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![ashraz](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.systemcrafters.net/ashraz/32/509_2.png) [@ashraz](https://forum.systemcrafters.net/u/ashraz)
#### Post date: [February 16, 2024, 4:12pm UTC](https://forum.systemcrafters.net/t/hype-skeptic-testing-hyprland-system-crafters-live/288/1 "2024-02-16T16:12:55Z")

</div>

[![](https://canada1.discourse-cdn.com/flex029/uploads/systemcrafters/original/1X/235abad58366f7cbde006a50a02e9b59c48b0244.jpeg "Hype Skeptic: Testing Hyprland - System Crafters Live!") ](https://www.youtube.com/watch?v=I6cDYLjjZKQ)

# What is the stream about?

> **[Hyprland: Dynamic tiling window compositor with the looks](https://hypr.land/)**
>
> Hyprland - Dynamic tiling Wayland compositor with the looks.

---

<div class="post-metadata">

### Author: ![daviwil](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.systemcrafters.net/daviwil/32/1_2.png) [@daviwil](https://forum.systemcrafters.net/u/daviwil)
#### Post date: [February 16, 2024, 7:56pm UTC](https://forum.systemcrafters.net/t/hype-skeptic-testing-hyprland-system-crafters-live/288/2 "2024-02-16T19:56:07Z")

</div>

Thank you sir! I need to get into the habit of posting the streams here too. Maybe a little automation?

---

<div class="post-metadata">

### Author: ![shom](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.systemcrafters.net/shom/32/291_2.png) [@shom](https://forum.systemcrafters.net/u/shom)
#### Post date: [February 16, 2024, 8:23pm UTC](https://forum.systemcrafters.net/t/hype-skeptic-testing-hyprland-system-crafters-live/288/3 "2024-02-16T20:23:26Z")

</div>

I haven’t been able to catch a stream live in a while and was only able to do it for 30 minutes but that was a really fun stream! Rick-roll animated background was a perfect send off.

To be fair to Hyperland, it handled all the shenanigans without complaint and did exactly the insane things it was asked to do. That is VERY impressive!

---

<div class="post-metadata">

### Author: ![daviwil](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.systemcrafters.net/daviwil/32/1_2.png) [@daviwil](https://forum.systemcrafters.net/u/daviwil)
#### Post date: [February 16, 2024, 8:36pm UTC](https://forum.systemcrafters.net/t/hype-skeptic-testing-hyprland-system-crafters-live/288/4 "2024-02-16T20:36:57Z")

</div>

It did pretty well! I had a lot of fun torturing it 🙂

---

<div class="post-metadata">

### Author: ![ashraz](https://yyz1.discourse-cdn.com/flex029/user_avatar/forum.systemcrafters.net/ashraz/32/509_2.png) [@ashraz](https://forum.systemcrafters.net/u/ashraz)
#### Post date: [February 16, 2024, 9:21pm UTC](https://forum.systemcrafters.net/t/hype-skeptic-testing-hyprland-system-crafters-live/288/5 "2024-02-16T21:21:18Z")

</div>

Maybe with a checklist? Not sure how you start the shownotes, but if they are captured, then you could have the checklist in there, but as `COMMENT` or `:noexport:`. Alternatively, you could use a small buffer-only checklist:

```lisp
(defun show/forum/david/checklist (topic)
  "Return a checkklist for the SystemCrafters Live streams"
  (interactive "MStream topic: ")
  (let ((buffer (get-buffer-create "*System Crafters Checklist*")))
    (with-current-buffer buffer
      (goto-char (point-max))
      (org-mode)
      (insert (concat "* Prepare \"" topic "\" [/]"))
      (save-excursion
        (insert "
- [] Announced stream in YouTube
- [] Announced stream in [[elisp:dw/announce-topic][IRC]]
- [] [[https://forum.systemcrafters.net/latest][Add link to stream in forums]]
"))
      (switch-to-buffer buffer))))

```

You could also add additional steps like

- Switch OBS to start view
- Verify that streaming machine is plugged in
- …

I’ve used something similar in the past for my daily routine.
