mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-21 21:04:41 +01:00
fixes and aesthetic improvements
This commit is contained in:
parent
425e8b5454
commit
7b14f9a283
|
@ -141,8 +141,8 @@ in with lib; {
|
|||
"${mod}+Shift+p" = "exec em-play-loop.sh";
|
||||
|
||||
# permaclip
|
||||
"${mod}+c" = "rofi -show permaclip -modes \"permaclip:${pc-set.outPath}/bin/pc-set.sh\" -theme gruvbox-dark";
|
||||
"${mod}+v" = "rofi -show permaclip -modes \"permaclip:${pc-get.outPath}/bin/pc-get.sh\" -theme gruvbox-dark";
|
||||
"${mod}+c" = "exec rofi -show register -modes \"register:${pc-set.outPath}/bin/pc-set.sh\" -theme gruvbox-dark";
|
||||
"${mod}+v" = "exec rofi -show register -modes \"register:${pc-get.outPath}/bin/pc-get.sh\" -theme gruvbox-dark";
|
||||
};
|
||||
# }}}
|
||||
# Visuals {{{
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
# create ~/permaclip if it doesnt exist already
|
||||
mkdir -p $HOME/permaclip
|
||||
|
||||
tr_name=$(echo ''${@% (*} | xargs)
|
||||
tr_name=$(echo ${@% (*} | xargs)
|
||||
if [ x"$tr_name" != x"" ]; then
|
||||
xclip -selection c -i $HOME/permaclip/''${tr_name% (*} &> /dev/null
|
||||
xclip -selection c -i $HOME/permaclip/${tr_name% (*} &> /dev/null
|
||||
exit 0
|
||||
fi
|
||||
|
||||
|
@ -11,5 +11,5 @@ echo -e "\0markup-rows\x1ftrue"
|
|||
|
||||
for reg in $(ls ~/permaclip); do
|
||||
content=$(cat ~/permaclip/$reg)
|
||||
echo -e "$reg (<i>''${content:0:50}...</i>)"
|
||||
echo -e "<b>$reg</b> (<i>${content:0:50}...</i>)"
|
||||
done
|
||||
|
|
|
@ -3,7 +3,7 @@ mkdir -p $HOME/permaclip
|
|||
|
||||
tr_name=$(echo $@ | xargs)
|
||||
if [ x"$tr_name" != x"" ]; then
|
||||
tr_name="''${tr_name% (*}"
|
||||
tr_name="${tr_name% (*}"
|
||||
clipdata=$(xclip -selection c -o)
|
||||
echo $clipdata > $HOME/permaclip/$tr_name
|
||||
fi
|
||||
|
@ -12,5 +12,5 @@ echo -e "\0markup-rows\x1ftrue"
|
|||
|
||||
for reg in $(ls ~/permaclip); do
|
||||
content=$(cat ~/permaclip/$reg)
|
||||
echo -e "$reg (<i>''${content:0:30}</i>)"
|
||||
echo -e "<b>$reg</b> (<i>${content:0:30}</i>)"
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue