diff options
author | Bradley Taunt <bt@btxx.org> | 2024-07-06 10:03:59 -0400 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-07-06 10:03:59 -0400 |
commit | f95236fda7df4ff920101028b8efc4f5ebf4c1ab (patch) | |
tree | 33bdc192083537f9bcb835e4e5fea27c0dc501ef | |
parent | b3bf04932880e9f984675cff5d70da58167316cc (diff) |
Move back to lowdown for speedy builds and simplicity
-rw-r--r-- | .build.yml | 5 | ||||
-rw-r--r-- | .gitignore | 1 | ||||
-rwxr-xr-x | barf | 2 | ||||
-rw-r--r-- | posts/dwm-gnome.md | 23 |
4 files changed, 12 insertions, 19 deletions
@@ -1,10 +1,9 @@ image: alpine/latest oauth: pages.sr.ht/PAGES:RW packages: -- ruby-full -- ruby-dev - rsync - coreutils +- lowdown - go - hut environment: @@ -12,8 +11,6 @@ site: bt.srht.site sources: - https://git.sr.ht/~bt/btxx.org tasks: -- install-kramdown: | - sudo gem install kramdown - build: | cd btxx.org make build @@ -1,2 +1 @@ build/ -.ruby-version @@ -15,7 +15,7 @@ elif [ "$os_name" = "Darwin" ]; then fi set -eu -MARKDOWN=kramdown +MARKDOWN=lowdown IFS=' ' # Create tab-separated file with filename, title, creation date, last update diff --git a/posts/dwm-gnome.md b/posts/dwm-gnome.md index 7b5ecee..fc9929f 100644 --- a/posts/dwm-gnome.md +++ b/posts/dwm-gnome.md @@ -10,26 +10,23 @@ For reference, I'm running GNOME 45.0 on Ubuntu 23.10 When I use `dwm` I tend to have a hard-set amount of `tags` to cycle through (normally 4-5). Unfortunately, dynamic rendering is the default for workspaces (ie. tags) in GNOME. For my personal preference I set this setting to `fixed`. We can achieve this by opening **Settings** > **Multitasking** and selecting "Fixed number of workspaces". -<figure> - <img src="/public/images/gnome-1.png" alt="Screenshot of GNOME's Multitasking Settings GUI"> - <figcaption>Screenshot of GNOME's Multitasking Settings GUI</figcaption> -</figure> +*Screenshot of GNOME's Multitasking Settings GUI*: + +![Screenshot of GNOME's Multitasking Settings GUI](/public/images/gnome-1.png) ## Setting Our Keybindings -Now all that is left is to mimic `dwm` keyboard shortcuts, in this case: <kbd>ALT</kbd> + <kbd>$num</kbd> for switching between workspaces and <kbd>ALT</kbd> + <kbd>SHIFT</kbd> + <kbd>$num</kbd> for moving windows across workspaces. These keyboard shortcuts can be altered under **Settings** > **Keyboard** > **View and Customize Shortcuts** > **Navigation**. +Now all that is left is to mimic `dwm` keyboard shortcuts, in this case: `ALT` + `$num` for switching between workspaces and `ALT` + `SHIFT` + `$num` for moving windows across workspaces. These keyboard shortcuts can be altered under **Settings** > **Keyboard** > **View and Customize Shortcuts** > **Navigation**. You'll want to make edits to both the "Switch to workspace *n*" and "Move window to workspace *n*". -<figure> - <img src="/public/images/gnome-2.png" alt="Screenshot of GNOME's keyboard shortcut GUI"> - <figcaption>Screenshot of GNOME's keyboard shortcut GUI: switch to workspace</figcaption> -</figure> +*Screenshot of GNOME's keyboard shortcut GUI: switch to workspace*: + +![Screenshot of GNOME's keyboard shortcut GUI](/public/images/gnome-2.png) + +*Screenshot of GNOME's keyboard shortcut GUI: move window to workspace*: -<figure> - <img src="/public/images/gnome-3.png" alt="Screenshot of GNOME's keyboard shortcut GUI"> - <figcaption>Screenshot of GNOME's keyboard shortcut GUI: move window to workspace</figcaption> -</figure> +![Screenshot of GNOME's keyboard shortcut GUI](/public/images/gnome-3.png) That's it. You're free to include even more custom keyboard shortcuts (open web browser, lock screen, hibernate, etc.) but this is a solid starting point. Enjoy tweaking GNOME! |