diff --git a/content/post/Gnome-application-theme.md b/content/post/Gnome-application-theme.md
new file mode 100644
index 0000000..8b4a82a
--- /dev/null
+++ b/content/post/Gnome-application-theme.md
@@ -0,0 +1,32 @@
++++
+title = "Gnome Application Theme"
+date = 2022-08-28T13:42:37-04:00
+lastmod = 2022-08-28T13:42:37-04:00
+tags = [
+ "gtk",
+ "cusomisation"
+]
+categories = ["Linux"]
+imgs = []
+cover = "" # image show on top
+readingTime = true # show reading time after article date
+toc = true
+comments = false
+justify = false # text-align: justify;
+single = false # display as a single page, hide navigation on bottom, like as about page.
+license = "" # CC License
+draft = false
++++
+
+GTK+ ≥ 3.12 allows you to theme specific applications, such as nevolution.
+
+
+You can use the GTK_THEME=[theme-name] [application] command to run a specific application with a specific theme. For example, you can enter GTK_THEME=Yaru-dark evolution in the terminal to run the evolution of the Yaru dark theme.
+
+If you want to keep this theme permanently in a program,
+
+You should go to /usr/share/applications and find and copy the application's .desktop file, in this case mine was org.gnome.Evolution.desktop. Then paste it into ~/.local/share/applications and open it with a text editor,
+
+Then after = add env GTK_THEME= look for each line starting with Exec= and put a space after it so the rest of the line comes before it, eg: Exec=env GTK_THEME= Yaru-Dark Evolution -c stream
+
+All done 😄
diff --git a/content/post/cheatsheet-ranger.md b/content/post/cheatsheet-ranger.md
new file mode 100644
index 0000000..ba8189e
--- /dev/null
+++ b/content/post/cheatsheet-ranger.md
@@ -0,0 +1,17 @@
++++
+title = "Cheatsheet Ranger"
+date = 2022-08-28T19:16:08-04:00
+lastmod = 2022-08-28T19:16:08-04:00
+tags = ["ranger","cheatsheet"]
+categories = ["Linux"]
+imgs = []
+cover = "" # image show on top
+readingTime = true # show reading time after article date
+toc = true
+comments = false
+justify = false # text-align: justify;
+single = false # display as a single page, hide navigation on bottom, like as about page.
+license = "" # CC License
+draft = true
++++
+
diff --git a/content/post/cheatsheet-tmux.md b/content/post/cheatsheet-tmux.md
new file mode 100644
index 0000000..7cbdbe9
--- /dev/null
+++ b/content/post/cheatsheet-tmux.md
@@ -0,0 +1,34 @@
++++
+title = "Cheatsheet Tmux"
+date = 2022-08-28T19:15:25-04:00
+lastmod = 2022-08-28T19:15:25-04:00
+tags = ["cheatsheet","tmux"]
+categories = ["Linux"]
+imgs = []
+cover = "" # image show on top
+readingTime = true # show reading time after article date
+toc = true
+comments = false
+justify = false # text-align: justify;
+single = false # display as a single page, hide navigation on bottom, like as about page.
+license = "" # CC License
+draft = false
++++
+
+Tmux is a terminal multiplexer. It lets you switch easily between several programs in one terminal, detach them (they keep running in the background) and reattach them to a different terminal.
+
+
+
+|||
+|---|---|
+| Create window | Ctrl + b c |
+| Switch window by number| Ctrl + b 0...9 |
+| Previous window | Ctrl + b p |
+| Next window | Ctrl + b n |
+| Split pane with vertical layout | Ctrl + b " |
+| Split pane with horizontal layout | Ctrl + b { |
+| Switch pane | Ctrl + b ⬆️⬇️➡️⬅️ |
+
+
+#### Acknowledgement :
+- https://github.com/tmux/tmux/wiki
\ No newline at end of file
diff --git a/content/post/cheatsheet-vi.md b/content/post/cheatsheet-vi.md
new file mode 100644
index 0000000..f117772
--- /dev/null
+++ b/content/post/cheatsheet-vi.md
@@ -0,0 +1,17 @@
++++
+title = "Cheatsheet Vi"
+date = 2022-08-28T19:15:33-04:00
+lastmod = 2022-08-28T19:15:33-04:00
+tags = ["cheatsheet","vi","vim"]
+categories = ["Linux"]
+imgs = []
+cover = "" # image show on top
+readingTime = true # show reading time after article date
+toc = true
+comments = false
+justify = false # text-align: justify;
+single = false # display as a single page, hide navigation on bottom, like as about page.
+license = "" # CC License
+draft = true
++++
+