diff --git a/articles/post45.php b/articles/post45.php new file mode 100644 index 0000000..116d535 --- /dev/null +++ b/articles/post45.php @@ -0,0 +1,35 @@ + + + + +speedwm 1.9 release + + + + + + +
+

speedwm 1.9 release

+

2023-02-05

+

speedwm 1.9 was released so I thought I’d write this short blog post. Yes, there is a real blog post in the works as well, in fact it’s basically complete, but I think writing this is necessary.

+

Either way, speedwm 1.9 is out now, and I want to talk about some of the changes I’ve made to it, since there are some big changes that will definitely be noticed if you just update from 1.8 to 1.9. First of all, if you just updated, you might notice that most of the keybindings have been removed. Many of the chained keybindings have been removed, because I simply wasn’t ever using them. But that’s not what you noticed, is it?

+

I removed most of the keybindings that call spawn() (the function that runs a program) because if I leave them in, people need to have all that software installed to make the keybindings functional. That’s not great, so instead of dealing with that I simply made a copy of the old mouse.h and keybinds.h and uploaded them to my dotfiles repository on Codeberg.

+

Now, of course I still use the old list of keybinds myself, so how am I going to update keybinds efficiently? Well, that’s why I added a few lines to the Makefile. If there is a keybinds.rl.h for example, it will be temporarily copied to keybinds.h and the old file will be restored after the compilation, so the original file is intact but the binary contains the keybindings from keybinds.rl.h. This behavior is not exclusive to this header but also works on bar.h, options.h, mouse.h, and status.h.

+

In other changes, dmenu is no longer a dependency for speedwm, and is no longer used. Instead, speedwm now uses spmenu, my fork of dmenu which adds some useful things like color support, a proper keybind array, many more arguments and more. This fork was created to solve compatibility issues, as spmenu has a lot of arguments that dmenu simply does not have, and dmenu does not (by default) ignore arguments it does not recognize, something it should probably do because of all the patches available for it.

+

As for bug fixes, there are a lot of them. First of all, status modules now support pango markup, which was disabled by default previously. The window swallowing functionality now updates the icon, not doing so is a dumb oversight on my end, but 1.9 fixes it. I’ve also fixed the custom layout crashing. Previously it would crash when you try to enter an S-expression due to the (bad) handling of history. Instead of using the old terrible approach we’re just running a separate shell script and parsing stdout. Much better, and because it doesn’t read a file using fgets() the possibility for crashing is much smaller. Finally, I have fixed multi-monitor crashing. It’s a shame it took this long to be noticed, but I will make sure it works properly for every release from now on. On 1.8, you can mitigate this by disabling tag previews.

+

I’ve also added a lot more documentation, although existing documentation has been shortened down. Documentation will now be found primarily on the wiki, which anyone has both read and write access to. Yes, I know this is risky but I’m using Git to back stuff up, so it should be fine even if someone is dumb enough to ruin it for everyone.

+

The update also includes a few (not a lot, but a few) new features like:

+ +

Importantly though, speedwm-extras is no longer a dependency. You can still install it of course, and I still use it, but speedwm does not depend on it anymore. Either way, that’s it for this post, just a little update on speedwm since it has been over 2 months since the last release of speedwm was released. Expect 2.0 to take a long time, as I do not feel like pushing another update adding minimal changes. Thank you for reading, check out speedwm if you want an easy way into dwm and like efficient software, and have a good day!

+
+ + + diff --git a/blog.php b/blog.php index 50eb009..5362a53 100644 --- a/blog.php +++ b/blog.php @@ -14,6 +14,7 @@

I repost some of my RSS feed articles/posts here sometimes. This is a view of all of them.

NOTE: You can see all of them using my RSS feed.

Posts 40-49

+
speedwm 1.9 release, written on 2023-02-05 by speedie
..and a git repository (CGIT REVIEW!!!), written on 2023-01-28 by speedie
speedie.gq now has a wiki!, written on 2023-01-26 by speedie
When will I use BSD?, written on 2023-01-17 by speedie
diff --git a/rss.xml b/rss.xml index c17c33d..66c2b98 100644 --- a/rss.xml +++ b/rss.xml @@ -910,5 +910,28 @@

Either way, I think that's all I have to say, next blog post is probably going to be about my computer setup in general (it's VERY different from the norm, beyond just the operating system and window manager). So yeah, check out git.speedie.gq, and the wiki if you haven't already, and have a good day!

]]> + + speedwm 1.9 release + /articles/post45.php + /articles/post45.php + Sun, 05 Feb 2023 00:00:00 +0100 + + speedwm 1.9 was released so I thought I’d write this short blog post. Yes, there is a real blog post in the works as well, in fact it’s basically complete, but I think writing this is necessary.

+

Either way, speedwm 1.9 is out now, and I want to talk about some of the changes I’ve made to it, since there are some big changes that will definitely be noticed if you just update from 1.8 to 1.9. First of all, if you just updated, you might notice that most of the keybindings have been removed. Many of the chained keybindings have been removed, because I simply wasn’t ever using them. But that’s not what you noticed, is it?

+

I removed most of the keybindings that call spawn() (the function that runs a program) because if I leave them in, people need to have all that software installed to make the keybindings functional. That’s not great, so instead of dealing with that I simply made a copy of the old mouse.h and keybinds.h and uploaded them to my dotfiles repository on Codeberg.

+

Now, of course I still use the old list of keybinds myself, so how am I going to update keybinds efficiently? Well, that’s why I added a few lines to the Makefile. If there is a keybinds.rl.h for example, it will be temporarily copied to keybinds.h and the old file will be restored after the compilation, so the original file is intact but the binary contains the keybindings from keybinds.rl.h. This behavior is not exclusive to this header but also works on bar.h, options.h, mouse.h, and status.h.

+

In other changes, dmenu is no longer a dependency for speedwm, and is no longer used. Instead, speedwm now uses spmenu, my fork of dmenu which adds some useful things like color support, a proper keybind array, many more arguments and more. This fork was created to solve compatibility issues, as spmenu has a lot of arguments that dmenu simply does not have, and dmenu does not (by default) ignore arguments it does not recognize, something it should probably do because of all the patches available for it.

+

As for bug fixes, there are a lot of them. First of all, status modules now support pango markup, which was disabled by default previously. The window swallowing functionality now updates the icon, not doing so is a dumb oversight on my end, but 1.9 fixes it. I’ve also fixed the custom layout crashing. Previously it would crash when you try to enter an S-expression due to the (bad) handling of history. Instead of using the old terrible approach we’re just running a separate shell script and parsing stdout. Much better, and because it doesn’t read a file using fgets() the possibility for crashing is much smaller. Finally, I have fixed multi-monitor crashing. It’s a shame it took this long to be noticed, but I will make sure it works properly for every release from now on. On 1.8, you can mitigate this by disabling tag previews.

+

I’ve also added a lot more documentation, although existing documentation has been shortened down. Documentation will now be found primarily on the wiki, which anyone has both read and write access to. Yes, I know this is risky but I’m using Git to back stuff up, so it should be fine even if someone is dumb enough to ruin it for everyone.

+

The update also includes a few (not a lot, but a few) new features like:

+ +

Importantly though, speedwm-extras is no longer a dependency. You can still install it of course, and I still use it, but speedwm does not depend on it anymore. Either way, that’s it for this post, just a little update on speedwm since it has been over 2 months since the last release of speedwm was released. Expect 2.0 to take a long time, as I do not feel like pushing another update adding minimal changes. Thank you for reading, check out speedwm if you want an easy way into dwm and like efficient software, and have a good day!

]]> +
+