if you're seeing this, you're on my profile.
my repos are not pinned. please go to
https://sctech.netlify.app/projects
openpgp4fpr:57BE156FEB39FB9905BA1299169CABCFA8FDD1CF
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
#/bin/sh | |
cd ~ | |
wget -qO- https://raw.githubusercontent.com/sctech-tr/upm/main/install.sh | sh | |
upm install dunst | |
notify-send --urgency=normal -t 5000 'build-dolphin' 'Please enter your password in the terminal. sudo is needed.' | |
echo Starting ... you may be asked for your password. | |
echo Installing/updating needed packages... | |
upm install vulkan-loader vulkan-loader-devel cmake git gcc-c++ libXext-devel libgudev qt6-qtbase-devel qt6-qtbase-private-devel qt6-qtsvg-devel systemd-devel openal-soft-devel libevdev-devel libao-devel SOIL-devel libXrandr-devel pulseaudio-libs-devel bluez-libs-devel libusb1-devel libXi-devel --quiet |
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
import webbrowser | |
input_str = input("please enter a search query: ") | |
if input_str is None: | |
print("please enter a valid search query.") | |
else: | |
print(f"searching for {input_str}...") | |
final_query = input_str.replace(" ", "+") | |
url = f"https://www.google.com/search?q={final_query}&udm=14" | |
webbrowser.open(url) |