Skip to content

pdf/hyprpanel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hyprpanel

Lint Release AUR Go Report Card License

An opinionated panel/shell for the Hyprland compositor.

Note

This project was created as a holiday hackathon for my personal use only. There are almost certainly bugs, and possibly the occasional memory leak. Please don't read the code if you're easily offended 🙃.

Use at your own risk - I will accept contributions, but I don't expect to spend a lot of time maintaining this project.

hyprpanel-1080p.mp4

Install

Install via AUR

This project is published in the Arch AUR as hyprpanel-bin or hyprpanel, install using your favourite AUR helper.

Dependencies

This project depends on (required):

  • gtk4
  • gtk4-layer-shell
  • Hyprland (version must be >= v0.42.0)

Optional dependencies (required for default configuration):

  • systemd
  • pipewire-pulse/pulseaudio (for audio)
  • upower (for battery state)

Please ensure that you have these packages installed.

Install from Release

Download the latest release for your operating system and architecture.

Unpack the archive and place the hyprpanel and hyprpanel-client binaries on your $PATH.

Install from Source

Execute the following (requires the Go toolchain):

go install github.com/pdf/hyprpanel/cmd/hyprpanel@latest
go install github.com/pdf/hyprpanel/cmd/hyprpanel-client@latest

Usage

Add the following to your hyprland.conf (assuming that hyprpanel is available on your PATH):

exec-once = hyprpanel

Alternatively if you're using uwsm, launch using the app wrapper:

exec-once = uwsm app -- hyprpanel

And if you'd like applications started from the taskbar to be launched under the session, add the option:

"launch_wrapper": ["uwsm", "app", "--"]

to the top-level config for hyprpanel (see below for more details).

Configuration

On first run, hyprpanel will create a default configuration file at:

${XDG_CONFIG_HOME}/hyprpanel/config.json

You may review the current default configuration at config/default.json.

JSON is not my first choice for a human-writable config format, but due to internal protobuf usage this was by far the least painful format to implement.

Global configuration options are documented here.

Panels

Multiple panels are supported, if that's your thing.

Config Options

Modules

Each panel is composed of modules.

The complete list of available modules is available here

Audio

The audio module displays the current audio volume level as an icon.

This module supports embedding in systray.

Config Options

Actions

  • Left-click launches the specified mixer application.
  • Middle-click mutes the default input device.
  • Right-click mutes the default output device.
  • Scroll-wheel adjusts default output volume.

Clock

The clock module displays the current time/date. You may also specify a number of secondary regions to display via tooltip.

Config Options

Actions

  • Left-click to display a basic calendar.

Hud

Displays heads-up notifications for hardware events (e.g. volume, display brightness changes, etc)

Config Options

Notifications

Displays system notifications.

Note

The hyprpanel notifications implementation does not play well with others, and will fail to start if it can't own the bus. So if you use this module hyprpanel must be the only notifications implementation on your desktop.

To disable notifications support, set the config option dbus.notifications.enabled to false, and remove the notifications module from all panels.

Config Options

Actions

On notifications:

  • Left-click on notifications that include a default action will execute that action and optionally focus the sending application if supported by the notification.
  • Middle-click closes the notification.

Pager

The pager module displays a stylized preview of your workspace contents.

Config Options

Actions

  • Left-click switches to workspace.
  • Scroll-wheel switches between workspaces.

Power

The power module displays the current battery level as an icon.

This modules supports embedding in systray.

Config Options

Actions

  • Scroll-wheel adjusts display brightness.

Session

The session module provides a basic session management screen.

Config Options

Actions

  • Left-click to display session management screen.

Spacer

The spacer module simply adds empty space between modules.

Config Options

Systray

The systray module implements the StatusNotifierItem spec.

Some modules (where noted) support embedding in the systray.

Note

The hyprpanel SNI implementation does not play well with others: hyprpanel does not support registering additional StatusNotifierHosts, and will fail to start if it can't own the bus. So if you use this module hyprpanel must be the only SNI implementation on your desktop.

To disable systray support, set the config option dbus.systray.enabled to false, and remove the systray module from all panels.

If you need xembed support, you can try xembedsniproxy from the KDE project, though expect some artifical delays as that project expects to communicate directly with the KDE SNI implementation.

Config Options

Taskbar

The taskbar module displays an icon-only representation of running tasks, and optionally displays pinned launchers.

Config Options

Actions

  • Left-click launches a pinned application if it is not running. Focuses the application if it is running.
  • Middle-click launches a new instance of the application (if supported).
  • Right-click displays the application context-menu.
  • Scroll-wheel cycles focus between application windows when grouped tasks is enabled.

Global keybinds

Global keybinds are registered through the desktop portal. By default they do not have prefixes in hyprctl globalshortcuts. The following keybinds are available:

:com.c0dedbad.hyprpanel.audioSinkVolumeUp -> Increase the volume of the default audio output device
:com.c0dedbad.hyprpanel.audioSinkVolumeDown -> Decrease the volume of the default audio output device
:com.c0dedbad.hyprpanel.audioSinkMuteToggle -> Toggle the mute status of the default audio output device
:com.c0dedbad.hyprpanel.audioSourceVolumeUp -> Increase the volume of the default audio input device
:com.c0dedbad.hyprpanel.audioSourceVolumeDown -> Decrease the volume of the default audio input device
:com.c0dedbad.hyprpanel.audioSourceMuteToggle -> Toggle the mute status of the default audio input device
:com.c0dedbad.hyprpanel.brightnessUp -> Increase display brightness
:com.c0dedbad.hyprpanel.brightnessDown -> Increase display brightness

However if hyprpanel is running under uwsm, they will be prefixed by the unit/process name:

hyprpanel:com.c0dedbad.hyprpanel.audioSinkVolumeDown -> Decrease the volume of the default audio output device
hyprpanel:com.c0dedbad.hyprpanel.audioSinkMuteToggle -> Toggle the mute status of the default audio output device
hyprpanel:com.c0dedbad.hyprpanel.audioSourceVolumeUp -> Increase the volume of the default audio input device
hyprpanel:com.c0dedbad.hyprpanel.audioSourceVolumeDown -> Decrease the volume of the default audio input device
hyprpanel:com.c0dedbad.hyprpanel.audioSourceMuteToggle -> Toggle the mute status of the default audio input device
hyprpanel:com.c0dedbad.hyprpanel.brightnessUp -> Increase display brightness
hyprpanel:com.c0dedbad.hyprpanel.brightnessDown -> Increase display brightness
hyprpanel:com.c0dedbad.hyprpanel.audioSinkVolumeUp -> Increase the volume of the default audio output device

Styling

You may apply custom styling by providing a GTK4-compatible CSS file. By default hyprpanel will look for this file at:

${XDG_CONFIG_HOME}/hyprpanel/style.css

You may review the default stylesheet at style/default.css.

If you simply wish to update the colour scheme, you may define only the colours you wish to change in your stylesheet. For example, the following sets the highlight to blue and creates floating modules by setting a transparent panel background, and opaque module background:

@define-color Highlight rgba(0, 102, 255, 1.0);
@define-color PanelBackground rgba(0, 0, 0, 0.0);
@define-color ModuleBackground rgba(16, 16, 16, 1.0);

Alternatively, you can supply entirely custom styles, have fun.

Roadmap

  • Granular config reloads - reloads currently restart the whole panel plugin process
  • (Pulse)Audio module
  • Power/Battery/Brightness module
  • Notification history
  • GUI configuration (e.g. pinned launchers, pinned tray items, etc) (maybe)