From a6bcce7c7ca22b1a6433abee1aa9a0d31d1685f3 Mon Sep 17 00:00:00 2001 From: Uyanide Date: Wed, 5 Nov 2025 18:59:07 +0100 Subject: [PATCH] add git commit emojis to rofi-emoji --- config/niri/.config/niri/config.kdl | 4 +++ config/scripts/.local/scripts/config-sync | 34 ----------------------- config/scripts/.local/scripts/rofi-emoji | 19 ++++++++++++- 3 files changed, 22 insertions(+), 35 deletions(-) delete mode 100755 config/scripts/.local/scripts/config-sync diff --git a/config/niri/.config/niri/config.kdl b/config/niri/.config/niri/config.kdl index 014003c..f2c8518 100644 --- a/config/niri/.config/niri/config.kdl +++ b/config/niri/.config/niri/config.kdl @@ -46,6 +46,10 @@ output "eDP-2" { backdrop-color "#1e1e2e" } +// output "HDMI-A-1" { +// } + + /************************Layout************************/ layout { diff --git a/config/scripts/.local/scripts/config-sync b/config/scripts/.local/scripts/config-sync deleted file mode 100755 index 40d82a2..0000000 --- a/config/scripts/.local/scripts/config-sync +++ /dev/null @@ -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 diff --git a/config/scripts/.local/scripts/rofi-emoji b/config/scripts/.local/scripts/rofi-emoji index 3e7552d..39785d2 100755 --- a/config/scripts/.local/scripts/rofi-emoji +++ b/config/scripts/.local/scripts/rofi-emoji @@ -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 \ No newline at end of file +👉👌 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 \ No newline at end of file