This file contains hidden or 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
#!/usr/bin/env bash | |
file="$HOME/.bookmarks" # file to store bookmarks in | |
browser="chromium" # supports CTRL+L to go to address bar. | |
fileManager="pcmanfm" # supports CTRL+L to go to address bar. | |
function getUrlFromBookmarkEntry | |
{ | |
bookmark="$(cat "$file" | rofi -dmenu -p ":")" | |
if [ -z "$bookmark" ]; then |
This file contains hidden or 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
#!/bin/bash | |
echo "\x1B[01;91m888 888 " | |
echo "888 888 " | |
echo "888 888 " | |
echo "88888b. .d88b. 888d888 .d8888b 888888 " | |
echo "888 '88bd8P Y8b888P' 88K 888 " | |
echo "888 88888888888888 'Y8888b.888 " | |
echo "888 888Y8b. 888 d8b X88Y88b. " | |
echo "888 888 'Y8888 888 Y8P 88888P' 'Y888" | |
echo "\x1B[01;96m======================== OS INFO ========================" |