<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Posts on chriswalsh.dev</title><link>https://chriswalsh.dev/posts/</link><description>Recent content in Posts on chriswalsh.dev</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Thu, 20 Jan 2022 00:04:18 +0000</lastBuildDate><atom:link href="https://chriswalsh.dev/posts/index.xml" rel="self" type="application/rss+xml"/><item><title>Increase Swap Partition On Linux</title><link>https://chriswalsh.dev/posts/increase-swap-partition/</link><pubDate>Thu, 20 Jan 2022 00:04:18 +0000</pubDate><guid>https://chriswalsh.dev/posts/increase-swap-partition/</guid><description>Why do you need a swap partition? There are a variety of reasons you may need a swap partition. However, the main reason will most likely be that you do not have enough RAM to process some tasks that you want to do. To help mitigate this, you can increase the swap space available to your system.
The following are the steps to increase swap file size:
First, find the location of the current swapfile.</description></item><item><title>Add 'Copy Path' context menu item to Dolphin</title><link>https://chriswalsh.dev/posts/copy-path/</link><pubDate>Tue, 10 Nov 2020 14:57:00 +0000</pubDate><guid>https://chriswalsh.dev/posts/copy-path/</guid><description>This is for KDE5 with Dolphin as the file manager.
First we need to install xclip:
sudo apt-get install xclip Next we then need create a desktop file at the following path: ~/.local/share/kservices5.
You may need to create the above directory.
Then run:
sudo nano ~/.local/share/kservices5/copy-path.desktop Paste in the following:
[Desktop Action copy-path] Exec=echo &amp;#34;%U&amp;#34; | tr -d &amp;#39;\n&amp;#39; | xclip -selection clipboard Name=Copy Path Icon=edit-copy [Desktop Entry] Actions=copy-path ServiceTypes=KonqPopupMenu/Plugin MimeType=all/all Type=Service X-KDE-Priority=TopLevel Finally restart dolphin, a top level context menu should appear when you right click on a file, to copy its absolute path.</description></item><item><title>Font-Ligatures in VS Code</title><link>https://chriswalsh.dev/posts/font-ligatures/</link><pubDate>Sun, 08 Nov 2020 22:12:00 +0000</pubDate><guid>https://chriswalsh.dev/posts/font-ligatures/</guid><description>First, we need to install the ligature font systemwide:
sudo apt-get install fonts-firacode Next, we need to add the following into the VS Code settings file.
Go to File-&amp;gt;Preferences-&amp;gt;Settings. And then search for font ligatures.
Edit the line with editor.fontLigatures to match below, and all the extra line underneath it.
{ &amp;#34;editor.fontLigatures&amp;#34;: true, &amp;#34;editor.fontFamily&amp;#34;: &amp;#34;Fira Code&amp;#34; } Restart VS Code and your programming symbols should now be displayed as ligatures.</description></item></channel></rss>