From 0a1a5f2d0e261fef6b76714fae016ed1ee5f01e5 Mon Sep 17 00:00:00 2001 From: paul-loedige <59517210+ploedige@users.noreply.github.com> Date: Tue, 29 Oct 2024 14:01:24 +0100 Subject: [PATCH] fixed WhatsApp dropdown --- config.org | 42 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 40 insertions(+), 2 deletions(-) diff --git a/config.org b/config.org index a380225..10b6313 100644 --- a/config.org +++ b/config.org @@ -165,6 +165,7 @@ - [[#obs-studio][OBS Studio]] - [[#portfolio-performance][Portfolio Performance]] - [[#steam][Steam]] + - [[#jekyll][Jekyll]] - [[#manual-tasks-after-tangling][Manual Tasks after tangling]] - [[#other-todos][Other TODOs]] - [[#dunst][dunst]] @@ -1497,7 +1498,7 @@ whatsapp-for-linux name = 'WhatsApp' dropdown_groups_info.append((name, DropDown(name, - 'whatsapp-for-linux', + 'wasistlos', height = 0.5, width = 0.8, x = .1, @@ -4121,7 +4122,7 @@ xclip #+end_src ** [[https://www.drawio.com/][drawio]] #+begin_src shell :tangle pkg-list.txt -drawio-desktop-bin +drawio-desktop #+end_src ** [[https://open.spotify.com][Spotify]] @@ -4162,6 +4163,43 @@ portfolio-performance-bin #+begin_src conf :tangle pkg-list.txt steam #+end_src +** Jekyll +[[https://jekyllrb.com/][Jekyll]] is the base of [[https://pages.github.com/][GithubPages]]. After installing it, it can be used locally to validate changes before upload +*** .gemrc +#+begin_src yaml :tangle ~/.gemrc +# DO NOT EDIT THIS FILE DIRECTLY +# This is a file generated from a literate programing source file +# You should make any changes there and regenerate it from Emacs org-mode +# using org-babel-tangle (C-c C-v t) +#+end_src +*** Installation +Install the basic requirements +#+begin_src config :tangle pkg-list.txt +ruby +ruby-erb +base-devel +#+end_src +Add the required exports to path.sh +#+begin_src shell :tangle ~/.path.sh +export GEM_HOME="$HOME/.gems" +export GEM_PATH="$GEM_HOME" +export PATH="$HOME/.gems/bin:$PATH" +#+end_src +define the config in .gemrc +#+begin_src yaml :tangle ~/.gemrc +gem: --no-user-install +install: --no-user-install +update: --no-user-install +gemhome: .gems +gempath: + -.gems +#+end_src +Install the required gems +#+begin_src shell :tangle update.sh +echo INSTALLING Jekyll +source ~/.path.sh +gem install jekyll bundler +#+end_src * Manual Tasks after tangling 1. run ~update.sh~ 2. log out and back in to update group permissions