Posts in Category: script

clgrep - tool to quickly edit theme files

clgrep - tool to quickly edit theme files

Posted on 19th Jul 2026

Many times you have to make your custom theme, for a program, theme, template etc. The easiest way, is to get the default one and change the color codes to your liking. But a theme file, may have hundred of color codes, which not all of them have to be edited, to match your preferences or the color...

codejump -- micro editor plugin

codejump -- micro editor plugin

Posted on 4th Jun 2026

I like Micro editor, it's small, light weight and does what i want from a basic text editor and more. And because of that, i would like to use it even more, in coding projects. What Micro lacks in functions, it covers it with its plugin system and plugins. So when i install Micro, the first thi...

Quick find Firefox Bookmarks...

Quick find Firefox Bookmarks...

Posted on 16th May 2026

What is this? This is a small script to quick find Firefox bookmarks, in Linux, using DMENU or/and FZF What you will need... For this to work, you need to have installed the following: firefox ;) sqlite3 dmenu or fzf How it works... The trick part of all this to work is the actua...

Get transcription text from Youtube videos

Get transcription text from Youtube videos

Posted on 3rd May 2026

Here is a quick way to get the transcribe of any Youtube video. It will download the text/subtitle in .srt format and remove all empty lines and srt format strings, thus giving you only the text. The text will be printed onto the screen, it doesn't save it to any file. You can pipe the text to any...

Some of my BASH aliases...

Some of my BASH aliases...

Posted on 29th Mar 2026

Below is some of the aliases i use very often and i don't think i saw them else where. There are many aliases to find on the Net and use, but these are the ones, i am most proud of :) alias l='/usr/bin/ls --color' That simple... typing ls is tyring... so why not just type l? These two,...