mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
remove bottom-panel
This commit is contained in:
parent
d30cdd1e93
commit
539bdde2ab
2 changed files with 0 additions and 26 deletions
|
@ -1,25 +0,0 @@
|
|||
{ stdenv, fetchFromGitHub, glib, gettext }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gnome-shell-extension-bottompanel";
|
||||
version = "72d07b98276d48bd580ea731a0f49f46018d556d";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Thoma5";
|
||||
repo = "gnome-shell-extension-bottompanel";
|
||||
rev = version;
|
||||
sha256 = "1hpp39cpfd5h7x3j1b3nfly7c98sj10xqnwcmsr3d4jxkwh2vsbl";
|
||||
};
|
||||
|
||||
phases = [ "installPhase" ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p "$out/share/gnome-shell/extensions"
|
||||
cp -r "$src" "$out/share/gnome-shell/extensions/bottompanel@tmoer93"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Move your GNOME 3 shell panel to the bottom";
|
||||
homepage = https://github.com/Thoma5/gnome-shell-extension-bottompanel;
|
||||
};
|
||||
}
|
|
@ -7,7 +7,6 @@
|
|||
gnome3.gnome-tweaks
|
||||
gnome3.gnome-boxes
|
||||
qemu_kvm
|
||||
(callPackage ./bottom-panel.nix { })
|
||||
(writeShellScriptBin "red" ''
|
||||
x="$(gsettings get org.gnome.settings-daemon.plugins.color night-light-enabled)"
|
||||
[ "$x" = "true" ] && x=false || x=true
|
||||
|
|
Loading…
Reference in a new issue