We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tried quick install and with make install
make install #Remove old files(if any) rm -rf ~/.local/share/gnome-shell/extensions/[email protected] #Create directory structure mkdir -p ~/.local/share/gnome-shell/extensions/[email protected] mkdir -p ~/.local/share/gnome-shell/extensions/[email protected]/schemas #Copy compulsory files cp extension.js metadata.json prefs.js stylesheet.css ~/.local/share/gnome-shell/extensions/[email protected] cp schemas/gschemas.compiled ~/.local/share/gnome-shell/extensions/[email protected]/schemas #Optional files cp LICENSE ~/.local/share/gnome-shell/extensions/[email protected] 2>/dev/null || true cp README.md ~/.local/share/gnome-shell/extensions/[email protected] 2>/dev/null || true cp schemas/org.gnome.shell.extensions.netspeedsimplified.gschema.xml ~/.local/share/gnome-shell/extensions/[email protected]/schemas 2>/dev/null || true #Reloading shell; Sending SIGHUP signal to gnome-shell (equivalent to alt + f2 ; r ; enter) busctl --user call org.gnome.Shell /org/gnome/Shell org.gnome.Shell Eval s 'Meta.restart("Restarting…")' bs false "" #Enabling Gnome extension. sleep 5 gnome-extensions enable [email protected] Extension “[email protected]” does not exist make: *** [Makefile:22: install] Error 2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
tried quick install and with make install
make install
#Remove old files(if any)
rm -rf ~/.local/share/gnome-shell/extensions/[email protected]
#Create directory structure
mkdir -p ~/.local/share/gnome-shell/extensions/[email protected]
mkdir -p ~/.local/share/gnome-shell/extensions/[email protected]/schemas
#Copy compulsory files
cp extension.js metadata.json prefs.js stylesheet.css ~/.local/share/gnome-shell/extensions/[email protected]
cp schemas/gschemas.compiled ~/.local/share/gnome-shell/extensions/[email protected]/schemas
#Optional files
cp LICENSE ~/.local/share/gnome-shell/extensions/[email protected] 2>/dev/null || true
cp README.md ~/.local/share/gnome-shell/extensions/[email protected] 2>/dev/null || true
cp schemas/org.gnome.shell.extensions.netspeedsimplified.gschema.xml ~/.local/share/gnome-shell/extensions/[email protected]/schemas 2>/dev/null || true
#Reloading shell; Sending SIGHUP signal to gnome-shell (equivalent to alt + f2 ; r ; enter)
busctl --user call org.gnome.Shell /org/gnome/Shell org.gnome.Shell Eval s 'Meta.restart("Restarting…")'
bs false ""
#Enabling Gnome extension.
sleep 5
gnome-extensions enable [email protected]
Extension “[email protected]” does not exist
make: *** [Makefile:22: install] Error 2
The text was updated successfully, but these errors were encountered: