Initial Commit

This commit is contained in:
Salim Zaidi 2023-06-20 17:45:22 +01:00
parent f18da1cc25
commit a5bc6b13c5
96 changed files with 6936 additions and 0 deletions

7
config/scripts/bookmarks.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash
choice=$(cat ~/.config/bookmarks.txt | rofi -dmenu -p "Choose Website: ")
[ -z "$choice" ] && exit 0 || echo "$choice" | xargs "$BROWSER" || echo "$choice" | xargs brave-browser
sleep 1 && exit