gnome-shell-wsmatrix VS turbo

Compare gnome-shell-wsmatrix vs turbo and see what are their differences.

gnome-shell-wsmatrix

GNOME shell extension to arrange workspaces in a two-dimensional grid with workspace thumbnails (by mzur)

turbo

Incremental bundler and build system optimized for JavaScriptย and TypeScript, written in Rust โ€“ including Turbopack and Turborepo. (by vercel)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
gnome-shell-wsmatrix turbo
13 57
447 24,900
- 2.3%
6.8 9.9
17 days ago 6 days ago
JavaScript Rust
GNU General Public License v3.0 only Mozilla Public License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

gnome-shell-wsmatrix

Posts with mentions or reviews of gnome-shell-wsmatrix. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-01.
  • November at System76: Products, Promos, & COSMIC DE
    3 projects | /r/pop_os | 1 Dec 2022
    Workspace Matrix extension makes my day, every day.
  • Celebrating 5 Years of Pop _OS
    2 projects | news.ycombinator.com | 21 Oct 2022
    I just had NixOS break in a weird way for me. Ok, it was more that Gnome 42.4 broke the wsmatrix extension, which caused Gnome to shit itself[1] on login.

    It's a little bit of a double edged sword. NixOS lets me use pretty much straight upstream packages, which sometimes break due to not having thorough integration testing like a traditional distro would. On the other hand, I was able to just boot up an older configuration to get back to functional, and that let me figure out wtf was wrong.

    [1]: https://github.com/mzur/gnome-shell-wsmatrix/issues/236

  • projects
    1 project | /r/linuxquestions | 28 Sep 2022
    Implement the Workspace Matrix extension for GNOME https://github.com/mzur/gnome-shell-wsmatrix in Sway, possibly looking at Sway Overview for inspiration.
  • Problems with wall of workspaces
    1 project | /r/gnome | 25 Aug 2022
    Hej, recently updated my laptop to 22.04 but after some years getting use to unity and 2 extra screens now seems i cannot find my way to have a decent wall of workspaces... i found a nice extension that works fine (https://github.com/mzur/gnome-shell-wsmatrix) but only seems to create the workspace wall on the latop screen and not on the other external screens...
  • How do I change the Gnome shell from 42.0 to 42.1 on Ubuntu 22.04 LTS?
    2 projects | /r/Ubuntu | 8 May 2022
  • Why you prefer horizontal workspaces?
    1 project | /r/Ubuntu | 4 May 2022
    Release info: https://github.com/mzur/gnome-shell-wsmatrix/releases
  • System76 - New Desktop Environment Written in Rust Expected Summer 2023
    1 project | /r/pop_os | 23 Mar 2022
    My main concern is a 2D grid for workspaces, with workspace previews in the workspace switcher popup. Workspace Matrix does an excellent job of adding this to GNOME.
  • Embrace fall with Dracula Theme
    8 projects | /r/pop_os | 5 Nov 2021
    it will assign a new font to the extension. Then you may use an icon font, such as Font Awesome, Icofont or icomoon (which also allows you to create your own!). You can then change the workspace names with dconf-editor with the characters from the font. PM me if you need any help :)
  • Tiling window manager/DE
    5 projects | /r/linuxquestions | 13 Oct 2021
    On GNOME there's a way to get native 2 dimensional workspaces, but AFAIK the only way to enable this is with an extension like workspace matrix. For ctrl+alt+arrow-like shortcuts be sure to set keybindings for switch-to-workspace-arrow and move-to-workspace-arrow in org.gnome.desktop.wm.keybindings. However, I had some issues with GNOME 40 like: - Changing workspaces with mouse scroll jumps to an adjacent workspace up/down (as expected). Without a device that has horizontal scroll (like a touchpad) you can't go to adjacent workspaces left/right. - There are multiple issues with the workspace thumbnails in the overview.
  • How do I debug global keybinds (I'm using Pop!_OS, but I doubt it's Pop!_OS specific)
    1 project | /r/linuxquestions | 11 May 2021
    Ok, so, I'm using Workspace Matrix for a workspace grid.

turbo

Posts with mentions or reviews of turbo. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-14.
  • Supermemory - ChatGPT for your bookmarks
    2 projects | dev.to | 14 Apr 2024
    Supermemory has three main modules, managed by turborepo:
  • Next.js Shopify eCommerce Starter with Perfect Web Vitals ๐Ÿš€
    2 projects | dev.to | 12 Apr 2024
    From a structural viewpoint, we use a monorepo (Turborepo) to manage packages, even though we currently have only one Next.js app. We chose this setup because it prepares us for future developments, which will include additional apps. This arrangement helps keep the packages well-separated and self-contained.
  • dev.to wrapped 2023 ๐ŸŽ
    2 projects | dev.to | 7 Dec 2023
    # src Dockerfile: https://github.com/vercel/turbo/blob/main/examples/with-docker/apps/web/Dockerfile FROM node:18-alpine AS alpine # setup pnpm on the alpine base FROM alpine as base ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH" RUN corepack enable RUN pnpm install turbo --global FROM base AS builder # Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. RUN apk add --no-cache libc6-compat RUN apk update # Set working directory WORKDIR /app COPY . . RUN turbo prune --scope=web --docker # Add lockfile and package.json's of isolated subworkspace FROM base AS installer RUN apk add --no-cache libc6-compat RUN apk update WORKDIR /app # First install the dependencies (as they change less often) COPY .gitignore .gitignore COPY --from=builder /app/out/json/ . COPY --from=builder /app/out/pnpm-lock.yaml ./pnpm-lock.yaml COPY --from=builder /app/out/pnpm-workspace.yaml ./pnpm-workspace.yaml RUN pnpm install # Build the project COPY --from=builder /app/out/full/ . COPY turbo.json turbo.json RUN turbo run build --filter=web # use alpine as the thinest image FROM alpine AS runner WORKDIR /app # Don't run production as root RUN addgroup --system --gid 1001 nodejs RUN adduser --system --uid 1001 nextjs USER nextjs COPY --from=installer /app/apps/web/next.config.js . COPY --from=installer /app/apps/web/package.json . # Automatically leverage output traces to reduce image size # https://nextjs.org/docs/advanced-features/output-file-tracing COPY --from=installer --chown=nextjs:nodejs /app/apps/web/.next/standalone ./ COPY --from=installer --chown=nextjs:nodejs /app/apps/web/.next/static ./apps/web/.next/static COPY --from=installer --chown=nextjs:nodejs /app/apps/web/public ./apps/web/public CMD node apps/web/server.js
  • .dockerignore being ignored by docker-compose? no space left on device
    3 projects | /r/docker | 5 Dec 2023
    Following this example: https://github.com/vercel/turbo/tree/main/examples/with-docker/apps/web. Except I'm using pnpm. Edit Reddit Codeblocks are horrible and keeps removing all formatting.
  • How to Win Any Hackathon ๐Ÿš€๐Ÿค‘
    7 projects | dev.to | 2 Nov 2023
    The Dockerfile might seem a bit complicated (it is), but the reason for that is mostly just turborepo and the need for good caching. Realistically, you will only need to change the last line, if at all. It is based on this awesome Github Issue.
  • PURISTA: Build with rimraf, esbuild, Turbo & git-cliff
    3 projects | dev.to | 11 Sep 2023
    PURISTA is organized in a monorepo. During the development and build process, Turbo is used to execute different tasks and steps on multiple packages with one command.
  • How I approach and structure Enterprise frontend applications after 4 years of using Next.js
    5 projects | dev.to | 9 Sep 2023
    Turbo repo
  • Vercel Integration and Next.js App Router Support
    3 projects | dev.to | 10 Aug 2023
    Previously we mapped each Vercel project to a single Supabase project. With this release, we're introducing the concept of project 'Connections'. Supabase projects can have an unlimited number of Vercel Connections. This is especially useful for monorepos using Turborepo.
  • How Turborepo is porting from Go to Rust
    7 projects | news.ycombinator.com | 21 Jul 2023
    One detail I enjoy from this post is that sometimes you can just call a CLI[0]. It's easy to spend a lot of time figuring out how to expose some Rust/C code as a library for your language, but I like the simplicity of just compiling, shipping the binary and then calling it as a subprocess.

    Yes, there's overhead in starting a new process to "just call a function", but I think this approach is still underutilized.

    [0]: https://github.com/vercel/turbo/blob/c0ee0dea7388d1081512c93...

  • App Router example repos
    6 projects | /r/nextjs | 30 Jun 2023

What are some alternatives?

When comparing gnome-shell-wsmatrix and turbo you can also consider the following projects:

shelltile - A tiling window extension for GNOME Shell

esbuild - An extremely fast bundler for the web

sway - i3-compatible Wayland compositor

htmx - </> htmx - high power tools for HTML

argos - Create GNOME Shell extensions in seconds

create-t3-app - The best way to start a full-stack, typesafe Next.js app

vertical-overview - Gnome has had vertically stacked workspaces for a long time. The Gnome 40 update unfortunately made the switch to a horizontal layout. A choice that many Gnome users disagree with. This extension completely replaces the new Gnome overview with something that resembles the old style.

parcel - The zero configuration build tool for the web. ๐Ÿ“ฆ๐Ÿš€

gnome-shell-extension-freon - Shows CPU temperature, disk temperature, video card temperature (NVIDIA/Catalyst/Bumblebee&NVIDIA), voltage and fan RPM

buck2 - Build system, successor to Buck

polybar - A fast and easy-to-use status bar

Turbolinks - Turbolinks makes navigating your web application faster