{"id":1352,"date":"2021-12-16T13:08:41","date_gmt":"2021-12-16T10:08:41","guid":{"rendered":"https:\/\/files2.tojikon.net\/files-cloud\/2021\/08\/24\/how-to-organize-your-lists-in-linux-with-dynalist\/https:\/\/files2.tojikon.net\/files-cloud\/2021\/08\/24\/how-to-organize-your-lists-in-linux-with-dynalist\/"},"modified":"2021-12-16T13:08:41","modified_gmt":"2021-12-16T10:08:41","slug":"how-to-organize-your-lists-in-linux-with-dynalist","status":"publish","type":"post","link":"https:\/\/tojikon.net\/en\/1352-how-to-organize-your-lists-in-linux-with-dynalist\/","title":{"rendered":"How to organize your lists in Linux with Dynalist"},"content":{"rendered":"<section id=\"related_posts\">\n<div class=\"block-head\">\n<h3>Related Articles<\/h3>\n<\/div>\n<\/section>\n<p>Do you have a habit of creating to-do lists or idea lists on a notepad on your Linux PC? If so, there\u2019s a better way to go about it. Introducing Dynalist: an excellent note-taking editor for Linux. Here\u2019s how to use it on Linux.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignleft size-full wp-image-407066\" src=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-organize-your-lists-in-linux-with-dynalist.jpg\" alt=\"\" width=\"1200\" height=\"839\" srcset=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-organize-your-lists-in-linux-with-dynalist.jpg 1200w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-organize-your-lists-in-linux-with-dynalist-1.jpg 300w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-organize-your-lists-in-linux-with-dynalist-2.jpg 1024w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-organize-your-lists-in-linux-with-dynalist-3.jpg 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\"\/><\/p>\n<h2>Installing Dynalist on Linux<\/h2>\n<p>Dynalist is available for all Linux users. However, the app developer doesn\u2019t distribute a DEB package, RPM package, or even submit their applications on Snap or Flatpak stores.<\/p>\n<p>To get the app working on your Linux system, open up a terminal window. You can open up a terminal window on the Linux desktop by pressing <strong>Ctrl + Alt + T<\/strong> on the keyboard. Or, search for \u201cTerminal\u201d in the app menu and launch it that way.<\/p>\n<p>Once the terminal window is open on the Linux desktop, use the <strong>wget<\/strong> download command below to grab the latest release of Dynalist.<\/p>\n<pre>\nwget https:\/\/dynalist.io\/standalone\/download?file=dynalist.tar.gz -O dynalist.tar.gz\n<\/pre>\n<p>Now that the file is done downloading to your computer, you\u2019ll need to decompress it on your computer. Using the <strong>tar xvf<\/strong> command below, decompress the \u201cdynalist.tar.gz\u201d file.<\/p>\n<pre>\ntar xvf dynalist.tar.gz\n<\/pre>\n<p>After decompressing the file, a folder with the name \u201cdynalist-1.0.5\u201d. From here, use the <strong>mv<\/strong> command and rename the folder into \u201cdynalist.\u201d The folder needs to be renamed for installation purposes.<\/p>\n<pre>\nmv dynalist-1.0.5\/ dynalist\/\n<\/pre>\n<p>Now that the file is renamed use the <strong>mv<\/strong> command once again, this time with the <strong>sudo<\/strong> command, and place it into the <code>\/opt\/<\/code> folder.<\/p>\n<p><code>sudo mv dynalist\/<\/code><\/p>\n<p>With the folder in the \/opt\/ directory, it is time to make a launcher. Using the <strong>touch<\/strong> command, create the \u201cdynalist\u201d file. This file is a script, but it will make it so that you can launch the Dynalist program any time you want.<\/p>\n<p><code>touch ~\/dynalist<\/code><\/p>\n<p>With the file created, open up the text file using the <strong>nano<\/strong> command. Then, write in \u201c#!\/bin\/bash\u201d at the top of the file. This line of code is essential, and your script will not be able to launch without it.<\/p>\n<p><code>#!\/bin\/bash<\/code><\/p>\n<p>After the first line of code, add in the second line of code. This code will move the script to the \u201cdynalist\u201d folder in the \/opt\/ directory where the program\u2019s files are. The script needs to be here because, without it, it will not launch.<\/p>\n<p><code>cd \/opt\/dynalist\/<\/code><\/p>\n<p>With the second line of code set up, it is time to put the third line into the launcher file. This line will handle starting up Dynalist on the Linux desktop.<\/p>\n<p><code>.\/dynalist<\/code><\/p>\n<p>Now that the three lines of code are configured. Save the edits using the <strong>Ctrl + O<\/strong> keyboard command. After that, close the Nano text editor using the <strong>Ctrl + X<\/strong> keyboard command.<\/p>\n<p>With everything saved, use the <strong>mv<\/strong> command to place the launcher file into the <code>\/usr\/bin\/<\/code> directory. Placing this file here will launch the app when you run the <strong>dynalist<\/strong> command.<\/p>\n<pre>\nsudo mv ~\/dynalist \/usr\/bin\/\n<\/pre>\n<p>Finally, update the permissions of the file using the <strong>chmod<\/strong> command.<\/p>\n<pre>\nsudo chmod +x \/usr\/bin\/dynalist\n<\/pre>\n<p>To launch the program on your computer, press <strong>Alt + F2<\/strong> on the keyboard to open up the quick launcher. Then, type in the command below to start up Dynalist.<\/p>\n<pre>\ndynalist\n<\/pre>\n<h2>Using Dynalist on Linux<\/h2>\n<p>To create notes with Dynalist, start by finding the \u201cMy files\u201d sidebar. Then, click on the \u201c+\u201d symbol to create a new note in the app. When you select this button, you\u2019ll see a menu appear.<\/p>\n<p>In the menu that appears, there are three options to choose from. First, to create a new note, you can click on the \u201cNew document\u201d button. After selecting this button, Dynalist will create a new file.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignleft size-full wp-image-407065\" src=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-organize-your-lists-in-linux-with-dynalist.png\" alt=\"\" width=\"1200\" height=\"829\" srcset=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-organize-your-lists-in-linux-with-dynalist.png 1200w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-organize-your-lists-in-linux-with-dynalist-1.png 300w, https:\/\/www.addictivetips.com\/app\/uploads\/2021\/08\/dynalist-1-1024x707.png 1024w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-organize-your-lists-in-linux-with-dynalist-2.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\"\/><\/p>\n<p>After creating a new file, Dynalist will prompt you to change the file\u2019s title from \u201cUntitled\u201d to whichever you want to name your new note file. After naming it, take the mouse and click on the blank text area.<\/p>\n<p>As soon as you click on the blank area, a bulleted list will be created. From here, you can immediately start writing your notes. To create a new item in the list, press the <strong>Enter<\/strong> key with the keyboard.<\/p>\n<h3>Advanced formatting<\/h3>\n<p>Writing in a bulleted list is good enough for most users. However, if you need more advanced formatting features, you\u2019ll need to refer to the \u201cTriggers\u201d list on the sidebar. These triggers are commands you can use to format your lists.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignleft size-full wp-image-407066\" src=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-organize-your-lists-in-linux-with-dynalist.jpg\" alt=\"\" width=\"1200\" height=\"839\" srcset=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-organize-your-lists-in-linux-with-dynalist.jpg 1200w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-organize-your-lists-in-linux-with-dynalist-1.jpg 300w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-organize-your-lists-in-linux-with-dynalist-2.jpg 1024w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-organize-your-lists-in-linux-with-dynalist-3.jpg 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\"\/><\/p>\n<p>For example, if you want to add a line of code into your document, you can press the ` key, write in your code, and close the code line with the ` symbol once again.<\/p>\n<p>There are a whole lot of advanced formatting features to use in Dynalist. If you want more information, click on the \u201cGetting started with Dynalist\u201d for more information on using the app and advanced formatting.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Related Articles Do you have a habit of creating to-do lists or idea lists on a notepad on your Linux PC? If so, there\u2019s a better way to go about it. Introducing Dynalist: an excellent note-taking editor for Linux. Here\u2019s how to use it on Linux. Installing Dynalist on Linux Dynalist is available for all &hellip;<\/p>\n","protected":false},"author":1,"featured_media":1353,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[21],"tags":[33],"_links":{"self":[{"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/posts\/1352"}],"collection":[{"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/comments?post=1352"}],"version-history":[{"count":0,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/posts\/1352\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/media\/1353"}],"wp:attachment":[{"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/media?parent=1352"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/categories?post=1352"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/tags?post=1352"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}