-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
void soul
committed
May 1, 2021
1 parent
c54a799
commit 109d106
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/bin/sh | ||
|
||
rust() { | ||
zathura /home/me/pustak/downloaded/rust.epub & | ||
cd /home/me/pustak/studies/DataScience/Programming/rust && st & | ||
st -e w3m https://doc.rust-lang.org/std/index.html & | ||
notify-send "📖 rust study session is on" & | ||
} | ||
|
||
bash() { | ||
st -e bat ~/pustak/studies/reference/bash.md & | ||
st -e bat ~/tent/hogsmead/Softwares/home/vimwiki/Everything\ Need\ to\ Know\ about\ Tmux.md & | ||
cd ~/pustak/bashfu && st & | ||
notify-send "📖 bash study session is on" & | ||
} | ||
|
||
python() { | ||
st -e bat ~/pustak/studies/reference/python.md & | ||
st -e bat ~/pustak/studies/DataScience/Programming/python/Python_Notes_from_Voidsoul.md & | ||
mpv ~/pustak/studies/DataScience/Programming/python/Python_Tutorial_For_Beginners*.mkv & | ||
cd ~/pustak/studies/DataScience/Programming/python/playground && st & | ||
zathura ~/pustak/studies/DataScience/Programming/python/Books/PythonBasics.pdf & | ||
zathura ~/pustak/studies/DataScience/Programming/python/Books/Haltermanpythonbook.pdf & | ||
notify-send "📖 python learning session is on" | ||
|
||
} | ||
|
||
choice="rust\nbash\npython" | ||
selection=${1:-$(echo "$choice" | dmenu -i -p "Study of: " -l 15)} | ||
|
||
$selection |