mirror of
https://github.com/alvinlollo/Single-install-script.git
synced 2026-07-14 02:41:48 +10:00
Add more depenencies and remove gdoc.vim
This commit is contained in:
@@ -1885,4 +1885,69 @@ AH↗️HA↘️HA↗️HA↘️ pekora arrows hahaha rabbit
|
||||
↵ enter key return
|
||||
𝕏 twitter x logo
|
||||
👉👈 etou ughhhhhhh shy
|
||||
👉👌 put it in imagination perv
|
||||
👉👌 put it in imagination perv
|
||||
🫨 shaking face tremble shake shocked
|
||||
🩷 pink heart love
|
||||
🩵 light blue heart love cyan
|
||||
🩶 grey heart gray love
|
||||
🫷 leftwards pushing hand stop halt left
|
||||
🫸 rightwards pushing hand stop halt right
|
||||
🫎 moose animal antlers
|
||||
🫏 donkey animal mule ass
|
||||
🪽 wing bird feather fly
|
||||
🐦⬛ black bird crow raven rook
|
||||
🪿 goose bird honk
|
||||
🪼 jellyfish sea ocean sting
|
||||
🪻 hyacinth flower spring
|
||||
🫚 ginger root spice food
|
||||
🫛 pea pod peas vegetable food
|
||||
🪭 folding hand fan fan cool
|
||||
🪮 hair pick afro comb
|
||||
🪇 maracas instrument music shake
|
||||
🪈 flute instrument music
|
||||
🪯 khanda sikh religion symbol
|
||||
🛜 wireless wifi wi-fi internet network
|
||||
🙂↔️ head shaking horizontally no shake
|
||||
🙂↕️ head shaking vertically yes nod
|
||||
🚶➡️ person walking facing right walk
|
||||
🚶♀️➡️ woman walking facing right walk
|
||||
🚶♂️➡️ man walking facing right walk
|
||||
🧎➡️ person kneeling facing right kneel
|
||||
🧎♀️➡️ woman kneeling facing right kneel
|
||||
🧎♂️➡️ man kneeling facing right kneel
|
||||
🧑🦯➡️ person with white cane facing right accessibility blind
|
||||
👨🦯➡️ man with white cane facing right accessibility blind
|
||||
👩🦯➡️ woman with white cane facing right accessibility blind
|
||||
🧑🦼➡️ person in motorized wheelchair facing right accessibility
|
||||
👨🦼➡️ man in motorized wheelchair facing right accessibility
|
||||
👩🦼➡️ woman in motorized wheelchair facing right accessibility
|
||||
🧑🦽➡️ person in manual wheelchair facing right accessibility
|
||||
👨🦽➡️ man in manual wheelchair facing right accessibility
|
||||
👩🦽➡️ woman in manual wheelchair facing right accessibility
|
||||
🏃➡️ person running facing right run
|
||||
🏃♀️➡️ woman running facing right run
|
||||
🏃♂️➡️ man running facing right run
|
||||
🧑🧑🧒 family adult adult child parents
|
||||
🧑🧑🧒🧒 family adult adult child child parents
|
||||
🧑🧒 family adult child parent
|
||||
🧑🧒🧒 family adult child child parent
|
||||
🐦🔥 phoenix fire bird rebirth
|
||||
🍋🟩 lime fruit citrus green
|
||||
🍄🟫 brown mushroom fungi
|
||||
⛓️💥 broken chain snap shatter
|
||||
face with bags under eyes tired sleepy exhausted
|
||||
fingerprint id biometric
|
||||
leafless tree barren dead winter
|
||||
root vegetable food turnip radish
|
||||
harp instrument music
|
||||
shovel dig tool
|
||||
splatter splash stain mess
|
||||
🇨🇶 flag sark
|
||||
distorted face anxiety shocked panic
|
||||
fight cloud comic brawl dust
|
||||
hairy creature sasquatch bigfoot
|
||||
🧑🩰 ballet dancer dance ballerina
|
||||
orca killer whale
|
||||
landslide rockfall disaster
|
||||
trombone instrument music
|
||||
treasure chest gold loot pirate
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
curr_workspace="$(hyprctl activeworkspace -j | jq -r ".id")"
|
||||
dispatcher="$1"
|
||||
shift ## The target is now in $1, not $2
|
||||
|
||||
if [[ -z "${dispatcher}" || "${dispatcher}" == "--help" || "${dispatcher}" == "-h" || -z "$1" ]]; then
|
||||
echo "Usage: $0 <dispatcher> <target>"
|
||||
exit 1
|
||||
fi
|
||||
if [[ "$1" == *"+"* || "$1" == *"-"* ]]; then ## Is this something like r+1 or -1?
|
||||
hyprctl dispatch "${dispatcher}" "$1" ## $1 = workspace id since we shifted earlier.
|
||||
elif [[ "$1" =~ ^[0-9]+$ ]]; then ## Is this just a number?
|
||||
target_workspace=$((((curr_workspace - 1) / 10 ) * 10 + $1))
|
||||
hyprctl dispatch "${dispatcher}" "${target_workspace}"
|
||||
else
|
||||
hyprctl dispatch "${dispatcher}" "$1" ## In case the target in a string, required for special workspaces.
|
||||
exit 1
|
||||
fi
|
||||
@@ -1,54 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Controls Hyprland's cursor zoom_factor, clamped between 1.0 and 3.0
|
||||
|
||||
# Get current zoom level
|
||||
get_zoom() {
|
||||
hyprctl getoption -j cursor:zoom_factor | jq '.float'
|
||||
}
|
||||
|
||||
# Clamp a value between 1.0 and 3.0
|
||||
clamp() {
|
||||
local val="$1"
|
||||
awk "BEGIN {
|
||||
v = $val;
|
||||
if (v < 1.0) v = 1.0;
|
||||
if (v > 3.0) v = 3.0;
|
||||
print v;
|
||||
}"
|
||||
}
|
||||
|
||||
# Set zoom level
|
||||
set_zoom() {
|
||||
local value="$1"
|
||||
clamped=$(clamp "$value")
|
||||
hyprctl keyword cursor:zoom_factor "$clamped"
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
reset)
|
||||
set_zoom 1.0
|
||||
;;
|
||||
increase)
|
||||
if [[ -z "$2" ]]; then
|
||||
echo "Usage: $0 increase STEP"
|
||||
exit 1
|
||||
fi
|
||||
current=$(get_zoom)
|
||||
new=$(awk "BEGIN { print $current + $2 }")
|
||||
set_zoom "$new"
|
||||
;;
|
||||
decrease)
|
||||
if [[ -z "$2" ]]; then
|
||||
echo "Usage: $0 decrease STEP"
|
||||
exit 1
|
||||
fi
|
||||
current=$(get_zoom)
|
||||
new=$(awk "BEGIN { print $current - $2 }")
|
||||
set_zoom "$new"
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {reset|increase STEP|decrease STEP}"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
Reference in New Issue
Block a user