mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
24 lines
734 B
Nix
24 lines
734 B
Nix
{ config, lib, pkgs, user, home-manager, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
gnomeExtensions.executor # Execute shell commands display output top bar
|
|
];
|
|
|
|
home-manager.users.${user} = {
|
|
dconf.settings = {
|
|
"org/gnome/shell" = {
|
|
enabled-extensions = [
|
|
"executor@raujonas.github.io"
|
|
];
|
|
};
|
|
"org/gnome/shell/extensions/executor" = {
|
|
"click-on-output-active" = false;
|
|
"center-active" = false;
|
|
"left-active" = false;
|
|
"right-active" = true;
|
|
"right-commands-json" = ''{"commands":[{"isActive":true,"command":"echo \" $(cat /tmp/svs)dB\"","interval":10,"uuid":"732cd6de-ff5f-46a7-b8bb-51d1c621cc60"}]}'';
|
|
};
|
|
};
|
|
};
|
|
}
|