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
# Title bar icons | |
for_window [class="(?i)firefox"] title_format "<tt></tt><span foreground='#FF6611'> </span><tt> </tt>%title" | |
for_window [class="(.*)terminal(.*)"] title_format "<tt></tt><span foreground='#00FF00' background='#000000'> </span><tt> </tt>%title" | |
for_window [class="(.*)Chromium-browser(.*)"] title_format "<tt></tt><span foreground='#367dd0' background='#d9e5f4'> </span><tt> </tt>%title" | |
for_window [class="Evolution"] title_format "<tt></tt><span foreground='#FFFFFF' > </span><tt> </tt>%title" | |
for_window [title=".* Evolution"] title_format "<tt></tt><span foreground='#FFFFFF' > </span><tt> </tt>%title" | |
for_window [class="Slack"] title_format "<tt></tt><span foreground='#FFFFFF' > </span><tt> </tt>%title" | |
for_window [class="Signal"] title_format "<tt></tt><span background='#2090ea' foreground='#FFFFFF' > </span><tt> </tt>%title" | |
for_window [class="VirtualBox Machine"] title_format "<tt></tt><span background='#073624' foreground='#AAAAFF' > </span><tt> </tt>%title" | |
for_window [cla |
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 | |
# rofi-virtualbox: manage virtualbox machines with rofi | |
# Originally by Oliver Kraitschy <[email protected]> (https://github.com/okraits/rofi-tools) | |
# With modifications by Alexander Pushkov <[email protected]> | |
OPTIONS="Start machine\nStart headless\nSend ACPI shutdown signal\nClone machine\nDelete machine" | |
kb_start="Control-Return" |
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 python3 | |
""" | |
License: MIT License | |
Copyright (c) 2023 Miel Donkers | |
Very simple HTTP server in python for logging requests | |
Usage:: | |
./server.py [<port>] | |
""" | |
from http.server import BaseHTTPRequestHandler, HTTPServer |
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
git checkout <branch> | |
git fetch <other-fork-alias> | |
git cherry-pick <commit-hash> | |
git push <your-fork-alias> |