add git commit emojis to rofi-emoji
This commit is contained in:
@@ -46,6 +46,10 @@ output "eDP-2" {
|
||||
backdrop-color "#1e1e2e"
|
||||
}
|
||||
|
||||
// output "HDMI-A-1" {
|
||||
// }
|
||||
|
||||
|
||||
/************************Layout************************/
|
||||
|
||||
layout {
|
||||
|
||||
@@ -1,34 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
path="$(dirname "$(readlink -f "$0")")"
|
||||
backupDir="$HOME/.config/config-backup/$(date +%Y%m%d-%H%M%S)"
|
||||
backupDirCreated=0
|
||||
|
||||
sources=""
|
||||
if [ -z "$1" ]; then
|
||||
sources=$(find "$path/../config/" -maxdepth 1 -not -path "$path/../config")
|
||||
else
|
||||
for arg in "$@"; do
|
||||
src="$path/../config/$arg"
|
||||
if [ ! -e "$src" ]; then
|
||||
echo "Error: Config '$arg' does not exist." >&2
|
||||
exit 1
|
||||
fi
|
||||
sources="$sources $path/../config/$arg"
|
||||
done
|
||||
fi
|
||||
|
||||
for src in $sources; do
|
||||
name="$(basename "$src")"
|
||||
dest="$HOME/.config/$name"
|
||||
|
||||
if [ -e "$dest" ] || [ -L "$dest" ]; then
|
||||
[ "$backupDirCreated" -eq 0 ] && {
|
||||
mkdir -pv "$backupDir"
|
||||
backupDirCreated=1
|
||||
}
|
||||
mv -vf "$dest" "$backupDir/"
|
||||
fi
|
||||
|
||||
ln -sv "$(realpath --relative-to="$HOME/.config" "$src")" "$dest"
|
||||
done
|
||||
@@ -1867,4 +1867,21 @@ AH↗️HA↘️HA↗️HA↘️HA↗️HA↘️HA↗️HA↘️ pekora arrows h
|
||||
↵ enter key return
|
||||
𝕏 twitter x logo
|
||||
👉👈 etou ughhhhhhh shy
|
||||
👉👌 put it in imagination perv
|
||||
👉👌 put it in imagination perv
|
||||
✨ git commit message feat
|
||||
🐛 git commit message fix
|
||||
📝 git commit message docs
|
||||
🎨 git commit message style
|
||||
♻️ git commit message refactor
|
||||
🚀 git commit message perf
|
||||
✅ git commit message test
|
||||
🔧 git commit message chore
|
||||
🔒 git commit message security
|
||||
🚨 git commit message lint
|
||||
💄 git commit message ui
|
||||
🚧 git commit message wip
|
||||
🔥 git commit message remove
|
||||
🔀 git commit message merge
|
||||
🔖 git commit message release
|
||||
⬆️ git commit message upgrade
|
||||
⬇️ git commit message downgrade
|
||||
Reference in New Issue
Block a user