Updates
This commit is contained in:
parent
ea10073442
commit
69a4039c93
1
.bashrc
1
.bashrc
@ -81,4 +81,5 @@ cat ~/.cache/wal/sequences
|
|||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
# NEOFETCH
|
# NEOFETCH
|
||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
|
echo ""
|
||||||
pfetch
|
pfetch
|
||||||
|
@ -184,7 +184,8 @@ layout_theme = {
|
|||||||
"border_width": 3,
|
"border_width": 3,
|
||||||
"margin": 15,
|
"margin": 15,
|
||||||
"border_focus": "ffffff",
|
"border_focus": "ffffff",
|
||||||
"border_normal": ColorC
|
"border_normal": ColorC,
|
||||||
|
"single_border_width": 3
|
||||||
}
|
}
|
||||||
|
|
||||||
# --------------------------------------------------------
|
# --------------------------------------------------------
|
||||||
@ -205,7 +206,7 @@ layouts = [
|
|||||||
# layout.TreeTab(),
|
# layout.TreeTab(),
|
||||||
# layout.VerticalTile(),
|
# layout.VerticalTile(),
|
||||||
# layout.Zoomy(),
|
# layout.Zoomy(),
|
||||||
# layout.Floating(**layout_theme)
|
layout.Floating(**layout_theme)
|
||||||
]
|
]
|
||||||
|
|
||||||
# --------------------------------------------------------
|
# --------------------------------------------------------
|
||||||
|
24
scripts/figlet.sh
Executable file
24
scripts/figlet.sh
Executable file
@ -0,0 +1,24 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# _____ _ _ _
|
||||||
|
# | ___(_) __ _| | ___| |_
|
||||||
|
# | |_ | |/ _` | |/ _ \ __|
|
||||||
|
# | _| | | (_| | | __/ |_
|
||||||
|
# |_| |_|\__, |_|\___|\__|
|
||||||
|
# |___/
|
||||||
|
#
|
||||||
|
# by Stephan Raabe (2023)
|
||||||
|
# -----------------------------------------------------
|
||||||
|
# Script to create ascii font based header on user input
|
||||||
|
# and copy the result to the clipboard
|
||||||
|
# -----------------------------------------------------
|
||||||
|
|
||||||
|
read -p "Enter the text for ascii encoding: " mytext
|
||||||
|
figlet "$mytext" > ~/figlet.txt
|
||||||
|
echo "" >> ~/figlet.txt
|
||||||
|
echo "by Stephan Raabe (2023)" >> ~/figlet.txt
|
||||||
|
echo "-----------------------------------------------------" >> ~/figlet.txt
|
||||||
|
sed -i 's/^/# /; s/$/ /' ~/figlet.txt
|
||||||
|
|
||||||
|
xclip -sel clip ~/figlet.txt
|
||||||
|
|
||||||
|
echo "Text copied to clipboard!"
|
Loading…
Reference in New Issue
Block a user