fixed WhatsApp dropdown

This commit is contained in:
paul-loedige
2024-10-29 14:01:24 +01:00
parent 8d226054cb
commit 0a1a5f2d0e
+40 -2
View File
@@ -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