gnome-shell-extensions | Gnome Shell extension to remove the workspace
kandi X-RAY | gnome-shell-extensions Summary
kandi X-RAY | gnome-shell-extensions Summary
Some extensions for the great GNOME Shell. They are highly opinionated and really not for everyone, although the Shell design could take hints from them. Keep in mind I mostly use the browser and need the desktop to get out of my way.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of gnome-shell-extensions
gnome-shell-extensions Key Features
gnome-shell-extensions Examples and Code Snippets
Community Discussions
Trending Discussions on gnome-shell-extensions
QUESTION
I have certain global shortcuts to update the microphone sound input level. Therefore, I was creating a gnome extension that adds a label in the top bar, displaying the current microphone sound percentage.
The code in extension.js
is something like this:
ANSWER
Answered 2021-Jan-13 at 00:52You probably want to connect to the notify
signal of Gvc.MixerStream
for the volume
property:
QUESTION
I have a local application with laravel 5.5 using a mysql databse on my ubuntu18.04.1. It is hosted on a server with php7.2, and I had the same version of php in my system. All was working fine. Yesterday, I tried to connect my app with SQL Server to get data from a database, and my nightmare started.
I added the data base connection info to the database.php file in my laravel app following this format
...ANSWER
Answered 2020-Dec-14 at 11:56I updated my post with my progress solving my own question, with the help of bhucho in the comments of my post, I was able to fix my php7.2.
Looking for solutions for install the correct sqlsrv driver for my php version, I checked again the microsoft webpage to find out which sqlsrv drivers I needed to run sql queries with php7.2, and I tried again to run sudo pecl install sqlsrv
and sudo pecl install pdo_sqlsrv
, but it didn't worked for me. Then I found another way to install the drivers without pecl, and i ran sudo apt-get install php7.2-dev
and downloaded the packages with wget http://pecl.php.net/get/sqlsrv-5.3.0.tgz
and wget http://pecl.php.net/get/pdo_sqlsrv-5.3.0.tgz
(5.3.0 was my sqlsrv version for php7.2), after this I installed with pear install pdo_sqlsrv-5.3.0.tgz
and pear install sqlsrv-5.3.0.tgz
. This time it worked for me (first time it throwed to me an error telling me that there was an installed version of pdo_sqlsrv, but I ran sudo pear uninstall pecl/pdo_sqlsrv
and ran again the install order, then it worked for me). Then, I tried again to run sudo pecl install sqlsrv
and sudo pecl install pdo_sqlsrv
and this time it worked! After this I ran sudo phpenmod -v 7.2 sqlsrv pdo_sqlsrv
and finally I finished the php7.2 sqlsrv drivers installation in my ubuntu! I tried to run again the connection to my database on sql server and it worked.
Thank you all for the help!
QUESTION
I tryed install gnome extesions. But i always recive the message 'Unable to locate GNOME Shell settings or version. Make sure it is installed and running.'.
I installed the gnome-shell-extensions and chrome-gnome-shell but no working.
I restart the computer and tryed a in other browser. The message continue.
...ANSWER
Answered 2020-Aug-19 at 18:14Budgie isn't GNOME Shell, so the error is correct. To install GNOME Shell extensions you need to be running GNOME Shell.
QUESTION
First of all, I am sorry If this is not the rite place to ask.
Recently, I tried to upload the extension https://extensions.gnome.org/extension/2935/control-blur-effect-on-lock-screen/ to the extensions.gnome.org website.
this link says to make zip -j
https://extensions.gnome.org/upload/ to create the zip file. Then to upload.
when I make the zip file with zip -r
and try to upload.. It returns error that metadata.json
file is not loaded and fails to upload though this file exists.
I must do zip -r
to have the compatibility to work the shell extension installed with the command gnome-extensions install nameOfTheExtension
Where as I have seen some gnome-shell-extensions downloaded from the same website are having this.. I mean when you create a zip file with zip -r
.
How can I achieve this?
...ANSWER
Answered 2020-Apr-26 at 00:58These files must be in the top-level of the Zip:
metadata.json
extension.js
prefs.js
(Optional file)stylesheet.css
(Optional file)
That is the only requirement. The -r
and -j
functions are explained by zip --help
:
-j junk (don't record) directory names
-r recurse into directories
If all your extension files are in one, top-level directory then -j
will work, otherwise it will probably break your directory hierarchy. You can check the layout of a zip with unzip -l
.
Typically you will zip with zip -r extension@domain.zip [path with metadata.json]
:
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install gnome-shell-extensions
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page