Skip to content

EuCaue/gnome-shell-extension-quick-lofi

Repository files navigation

Quick Lofi

Play lofi music on your Gnome desktop with just a click!

Demo

quick-lofi-demo.webm

Dependencies

The app depends on mpv to play the music, which you can install it with the following command:

# Fedora
sudo dnf install mpv

# Debian/Ubuntu based
sudo apt install mpv

# Arch based
sudo pacman -S mpv

Additionally, for now, it depends on the socat package. You can install it using the following command:

# Fedora
sudo dnf install socat

# Debian/Ubuntu based
sudo apt install socat

# Arch based
sudo pacman -S socat

Development

  1. Install Dependencies

    npm install
  2. Build and run the extension This command will build the extension, install it, and open a nested gnome-shell. (wayland-only)

npm run build && gnome-extensions install --force [email protected] && clear && dbus-run-session -- gnome-shell --nested --wayland

Any new file that should be added to the extension should be added to the esbuild.js file to be bundled with the extension.

GJS Docs