-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add "Install Linux Mint Cinnamon Themes on Debian"
- Loading branch information
smack0007
committed
Aug 23, 2024
1 parent
98b1fc7
commit 05d1664
Showing
28 changed files
with
254 additions
and
172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0"><meta name="description" content=""><meta name="author" content="Zachary Snow"><title>Install Linux Mint Cinnamon Themes on Debian</title><base href="https://smack0007.github.io"></base><link rel="stylesheet" type="text/css" href="css/style.css"><link rel="alternate" type="application/rss+xml" title="The Blog of Zachary Snow" href="feed.rss"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="manifest" href="/site.webmanifest"></head><body><div class="wrap"><nav class="navbar navbar-expand-lg navbar-dark bg-dark"><h1><a class="navbar-brand" href="/">The Blog of Zachary Snow</a></h1><button id="navbar-toggler" class="navbar-toggler" type="button" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button><div class="collapse navbar-collapse" id="navbarSupportedContent"><ul class="navbar-nav mr-auto"><li class="nav-item"><a class="nav-link active" href="index.html">Home<span class="visually-hidden">(current)</span></a></li><li class="nav-item"><a class="nav-link" href="about.html">About</a></li><li class="nav-item"><a class="nav-link" href="tags/index.html">Tags</a></li></ul><div class="social my-2 my-lg-0"><a href="https://twitter.com/smack0007" class="twitter" title="Twitter"><span class="icon-twitter"></span></a><a href="https://github.com/smack0007" class="github" title="Github"><span class="icon-github"></span></a><a href="https://paypal.me/smack0007" class="coffee" title="Buy me a Coffee"><span class="icon-mug"></span></a><a href="feed.rss" class="rss" title="RSS"><span class="icon-rss"></span></a></div></div></nav><main class="container"><div class="posts"><div class="post"><div class="post-header"><h2><a href="blog/2024/linux-mint-cinnamon-theme-on-debian.html">Install Linux Mint Cinnamon Themes on Debian</a></h2><div class="meta"><span class="date"><span class="icon-calendar"></span>August 23, 2024</span><span class="tags"><a href="tags/linux/index.html"><span class="icon icon-price-tags"></span><span class="tagName">linux</span></a><a href="tags/debian/index.html"><span class="icon icon-price-tags"></span><span class="tagName">debian</span></a><a href="tags/linux-mint/index.html"><span class="icon icon-price-tags"></span><span class="tagName">linux-mint</span></a><a href="tags/cinnamon/index.html"><span class="icon icon-price-tags"></span><span class="tagName">cinnamon</span></a></span></div></div><div class="content"><p>As a long time Windows user it probably is no surprise that I enjoy using the <a href="https://projects.linuxmint.com/cinnamon/">Cinnamon</a> Desktop | ||
Environment. Although I have used and enjoyed using <a href="https://linuxmint.com/">Linux Mint</a> one goal I had when I started replacing Windows | ||
throughout my house was to be the same distribution on differnt machines. So I settled on installing <a href="https://www.debian.org/">Debian</a> | ||
everywhere and customizing it to each systems individual needs.</p> | ||
<p>I wanted to run <a href="https://projects.linuxmint.com/cinnamon/">Cinnamon</a> on my Thinkpad Laptop and <a href="https://www.debian.org/">Debian</a> can install | ||
it out of the box. The only problem is the defaykt theme leaves a lot to be deisred. Luckily the theme from <a href="https://linuxmint.com/">Linux Mint</a> | ||
can installed using a few commands from the terminal. </p> | ||
<!--more--> | ||
|
||
<pre><code class="hljs shell">cd ~/Downloads # Could also be /tmp | ||
|
||
git clone --depth=1 --branch 2.1.8 [email protected]:linuxmint/mint-themes.git | ||
cd mint-themes | ||
sudo apt install -y pysassc # Needed by generate.py | ||
./generate.py | ||
sudo cp -r ./usr/share/themes/* /usr/share/themes | ||
cd .. | ||
rm -rf mint-themes | ||
|
||
git clone --depth=1 --branch 1.7.1 [email protected]:linuxmint/mint-x-icons.git | ||
cd mint-x-icons | ||
sudo cp -r ./usr/share/icons/* /usr/share/icons | ||
cd .. | ||
rm -rf mint-x-icosn | ||
|
||
git clone --depth=1 --branch 1.7.7 [email protected]:linuxmint/mint-y-icons.git | ||
cd mint-y-icons | ||
sudo cp -r ./usr/share/icons/* /usr/share/icons | ||
cd .. | ||
rm -rf mint-y-icons | ||
|
||
git clone --depth=1 [email protected]:linuxmint/mint-cursor-themes.git | ||
cd mint-cursor-theme | ||
sudo cp -r ./usr/share/icons/* /usr/share/icons | ||
cd .. | ||
rm -rf mint-cursor-themes | ||
</code></pre> | ||
<p>After running these commands the <a href="https://linuxmint.com/">Linux Mint</a> will be available for selection in the Themes application. The current versions | ||
of the individual repositories can be checked on GitHub.</p> | ||
</div></div></div><div class="clear"></div></main><footer class="p-13 p-md-5 mt-5 text-center text-muted bg-light"><div class="container"><ul class="links"><li><a href="https://twitter.com/smack0007" class="twitter" title="Twitter">Twitter</a></li><li><a href="https://github.com/smack0007" class="github" title="Github">GitHub</a></li><li><a href="https://paypal.me/smack0007" class="coffee" title="Buy me a Coffee">Buy me a Coffee</a></li><li><a href="feed.rss" class="rss" title="RSS">RSS</a></li></ul><p class="mb-0">The Blog of Zachary Snow</p></div></footer></div><script type="text/javascript">document.getElementById('navbar-toggler').onclick = function(){ document.getElementById('navbarSupportedContent').classList.toggle('collapse'); };</script></body></html> |
Oops, something went wrong.