Posts with Tag: linux

Whiptail Orange theme...

Whiptail Orange theme...

Posted on 27th Dec 2024

This is a theme for the whiptail linux tool, that creates menus in the terminal. It's similar to dialog. I made it for a project of mine, but because there aren't many themes out there, i share it for anyone who might find it useful. whiptail doesn't have a config file for its colors. You hav...

Trackpad to Keyboard emulation (Hackberry Pi)

Trackpad to Keyboard emulation (Hackberry Pi)

Posted on 26th Dec 2024

As you may know, i have a Hackberry Pi, which has a trackpad. The trackpad it self, is excellent to use in GUI but it has no use at plain TTY terminal, which is what i use most, while operating the Hackberry. So, i had to found a way, to emulate the trackpad movements into keyboard keys, to use in...

Mini fzf media launcher (file explorer)

Mini fzf media launcher (file explorer)

Posted on 25th Dec 2024

Below is a small media launcher for Linux/BASH, using, as always fzf :) You can use it to navigate, through directories and select media files to launch with your favorite media player. Of course the script can accept many improvements and it's only basic, but i am leaving this to you, as i wanted...

DELTREE command in Python

DELTREE command in Python

Posted on 18th Dec 2024

One of the most useful commands when i used DOS, was deltree. Quickly and easy, deleting large areas of the hard disk, with no point of return... In Linux, there isn't such a command, or perhaps, it's a bit disguised, but never the less, it hasn't the features of the original deltree command or...

Get Wireless Interface in BASH

Get Wireless Interface in BASH

Posted on 2nd Dec 2024

Just a quicky... :) To get the wireless interface of your computer, in a simple and "universal" (that works in every system) way, is the following. Just use this simple command: ls /sys/class/ieee80211/*/device/net/ -1 The command will list the names of the wireless interfaces. If it's only on...