123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>How to Install Gnome Extensions</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Linux,Debian,GNOME,Extensions,Customization,Dash To Panel,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="How to Install Gnome Extensions">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="08/22/2022 12:00:42 PM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>How to Install Gnome Extensions</h1>
- </div>
- <div></div>
- <div id="content">
- <ol>
- <li>Log into the Linux device</li>
- <li>Execute the following commands in a terminal:
- <div class="codeBlock"># install gnome tweaks utility<br />
- sudo apt update<br />
- sudo apt install gnome-tweaks<br />
- # create the extensions directory<br />
- mkdir /.local/share/gnome-shell/extensions -p<br />
- # output the gnome shell version<br />
- gnome-shell --version</div>
- </li>
- <li>Open a web browser and navigate to https://extensions.gnome.org/</li>
- <li>Search for an extension to install and select it</li>
- <li>From the Shell version... dropdown select the closest version to the installed gnome shell version output earlier</li>
- <li>Select the latest version available from the Extension version... dropdown</li>
- <li>Save the extension .zip file </li>
- <li>Open a file manager and navigate to ~/Downloads</li>
- <li>Extract the downloaded extension .zip file</li>
- <li>Browse the extracted folder contents and edit metadata.json in a text editor</li>
- <li>Copy the value of UUID key</li>
- <li>Close the text editor</li>
- <li>Navigate back one directory</li>
- <li>Cut the entire extracted extension directory to ~/.local/share/gnome-shell/extensions/</li>
- <li>Restart Gnome Shell by logging out and logging back in</li>
- <li>Launch Gnome Tweaks</li>
- <li>Select Extensions from the left navigation menu</li>
- <li>The newly installed extension should be listed</li>
- <li>Enable the extension and enjoy</li>
- </ol> </div>
- </div>
- </body>
- </html>
-
|