1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Install Highlighted Cursor Theme for Gnome</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="How To,Tutorial,i12bretro,Linux,Gnome,Theming,Cursor,Highlight,Tutorial Tip">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Install Highlighted Cursor Theme for Gnome">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <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>Install Highlighted Cursor Theme for Gnome</h1>
- </div>
- <div></div>
- <div id="content">
- <ol>
- <li>Download the bDMZ Cursor theme <a href="https://www.gnome-look.org/p/999801/" target="_blank">Download</a></li>
- <li>Extract the downloaded archive with the following command:
- <div class="codeBlock">cd ~/Downloads<br />
- mkdir bDMZ<br />
- # extract the downloaded tar.gz<br />
- sudo tar xzvf *bDMZ*tar.gz -C ~/Downloads/bDMZ --strip-components=1<br />
- # copy the extracted cursor themes to /usr/share/icons<br />
- sudo mv ~/Downloads/bDMZ/* /usr/share/icons<br />
- # install gnome tweaks utility<br />
- sudo apt install gnome-tweaks</div>
- </li>
- <li>Launch Gnome Tweaks</li>
- <li>Select Appearance from the left menu</li>
- <li>Click the dropdown across from Cursor and select the new cursor theme to use</li>
- </ol>
- </div>
- </div>
- </body>
- </html>
-
|