A complementary theme to adw-gtk3 for perfect GIMP styling.
Note
Currently, only dark theme is officially supported (Light theme will be added later) Windows & macOS support is planned (Will be supported in future updates)
Note
If you have Nix installed, you can simply run:
nix run github:dp0sk/adw-gimp3
to launch a version of GIMP 3.0 with adw-gimp3 built in.
Note
This theme depends on adw-gtk3 installation,
for non-NixOS systems.
Follow the instructions there before proceeding with adw-gimp3 installation.
-
Install the adw-gtk3 theme first.
-
Enable the
adw-gtk3theme via one of the following:
- GNOME Tweaks
- Refine
- Run:
gsettings set org.gnome.desktop.interface gtk-theme 'adw-gtk3'
-
Download the
adw-gimp3repositorygit clone https://github.com/dp0sk/adw-gimp3 cd adw-gimp3 -
Install the theme to your config directory by either running the installation script (
install.sh) OR manually copying theadw-gimp3folder to~/.config/GIMP/3.0/themes/:mkdir -p ~/.config/GIMP/3.0/themes cp -r adw-gimp3 ~/.config/GIMP/3.0/themes
-
Launch GIMP
-
Navigate to
Edit → Preferences → Theme -
Select the
adw-gimp3theme. -
(Optional) For better integration, navigate to:
Edit → Preferences → Image Windows -
(Optional) Enable
"Merge menu and title bar" -
Done!
Note
install.sh will handle the flatpak configuration automatically.
Warning
Flatpak doesn’t apply your system themes by default. To enable them, follow these steps:
- Install Flatseal
- Navigate to
All applications (global) → Filesystem → Other files - Add these lines:
xdg-config/gtk-3.0:roxdg-config/gtk-4.0:ro
- Now all your flatpak apps will be themed!
NixOS,
nix-darwin, &
home-manager
users can use the provided modules to install GIMP pre-loaded with the adw-gimp3 theme in your environment configs:
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
nix-darwin.url = "github:LnL7/nix-darwin/nix-darwin-24.11"
home-manager.url = "github:nix-community/home-manager";
adw-gimp3.url = "github:dp0sk/adw-gimp3";
};
outputs = inputs@{ nixpkgs, nix-darwin, adw-gimp3, ... }: {
# Install system-wide on a nix-darwin system:
darwinConfigurations."Johns-Macbook" = nix-darwin.lib.darwinSystem {
modules = [adw-gimp3.darwinModules.default];
};
# Install system-wide on a NixOS system:
nixosConfigurations.my-host = nixpkgs.lib.nixosSystem {
modules = [adw-gimp3.nixosModules.default];
};
# Install in your user home environment:
homeConfigurations.my-home = home-manager.lib.homeConfiguration {
modules = [adw-gimp3.homeManagerModules.default];
};
};
}or install GIMP 3.0 with adw-gimp3 to a profile:
nix profile install github:dp0sk/adw-gimp3`