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/dash | |
#A Shell script to fetch bitcoin price and display ! | |
#Author: Rammah Alensari | |
#Dependencies | |
# - jq https://stedolan.github.io/jq/ | |
# - Nerd Font https://www.nerdfonts.com/ (or delete the bitcoin iccon) | |
bitcoin_price=$(curl -s https://api.coindesk.com/v1/bpi/currentprice.json | jq -r '.bpi.USD.rate ' | awk -F '.' '{print $1}') | |
echo " ${bitcoin_price}" | cat |
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
// creat user-overrides.js file in your arkenfox profile folder, then add your overrides. | |
user_pref("places.history.enabled", true); // Enable history | |
user_pref("privacy.clearOnShutdown.history", false); // Prevent clearing history on shutdown | |
user_pref("browser.startup.page", 3); // restore previous session | |
user_pref("privacy.resistFingerprinting.letterboxing", false); //disable letterboxing | |
user_pref("media.eme.enabled", true); // enable DRM, for streaming platforms. |
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
const defaultConfig = { | |
username: "kira", | |
theme: { | |
backgroundColor: "#121317", | |
windowColor: "#1e212b", | |
glowColor: "#6b5cb157", | |
white: "#e2e2e2", | |
gray: "#97989d", | |
black: "#16161e", | |
red: "#ec6183", |