diff options
| author | krolyxon <krolyxon@tutanota.com> | 2022-06-01 22:55:52 +0530 |
|---|---|---|
| committer | krolyxon <krolyxon@tutanota.com> | 2022-06-01 22:55:52 +0530 |
| commit | 723220028038a3c6e155259e28d07e867e2d45c9 (patch) | |
| tree | f07e13aaf23e820c6da71ec02466e5831502b0e2 /.local | |
first commit
Diffstat (limited to '.local')
27 files changed, 2244 insertions, 0 deletions
diff --git a/.local/bin/colorpicker b/.local/bin/colorpicker Binary files differnew file mode 100755 index 0000000..ab19d07 --- /dev/null +++ b/.local/bin/colorpicker diff --git a/.local/bin/connect_wifi b/.local/bin/connect_wifi new file mode 100755 index 0000000..3b4d5f8 --- /dev/null +++ b/.local/bin/connect_wifi @@ -0,0 +1,5 @@ +#!/bin/sh + +bssid=$(nmcli device wifi list | sed -n '1!p' | cut -b 9- | dmenu -p "Select wifi:" -l 20 | cut -d' ' -f1) +pass=$(echo "" | dmenu -P -p "Enter Password: ") +nmcli device wifi connect $bssid password $pass diff --git a/.local/bin/dmenumount b/.local/bin/dmenumount new file mode 100755 index 0000000..b414dc8 --- /dev/null +++ b/.local/bin/dmenumount @@ -0,0 +1,67 @@ +#!/bin/sh + +# Gives a dmenu prompt to mount unmounted drives and Android phones. If +# they're in /etc/fstab, they'll be mounted automatically. Otherwise, you'll +# be prompted to give a mountpoint from already existsing directories. If you +# input a novel directory, it will prompt you to create that directory. + +getmount() { \ + [ -z "$chosen" ] && exit 1 + # shellcheck disable=SC2086 + mp="$(find $1 2>/dev/null | dmenu -i -p "Type in mount point.")" || exit 1 + test -z "$mp" && exit 1 + if [ ! -d "$mp" ]; then + mkdiryn=$(printf "No\\nYes" | dmenu -i -p "$mp does not exist. Create it?") || exit 1 + [ "$mkdiryn" = "Yes" ] && (mkdir -p "$mp" || sudo -A mkdir -p "$mp") + fi + } + +mountusb() { \ + chosen="$(echo "$usbdrives" | dmenu -i -p "Mount which drive?")" || exit 1 + chosen="$(echo "$chosen" | awk '{print $1}')" + sudo -A mount "$chosen" 2>/dev/null && notify-send "๐ป USB mounting" "$chosen mounted." && exit 0 + alreadymounted=$(lsblk -nrpo "name,type,mountpoint" | awk '$3!~/\/boot|\/home$|SWAP/&&length($3)>1{printf "-not ( -path *%s -prune ) ",$3}') + getmount "/mnt /media /mount /home -maxdepth 5 -type d $alreadymounted" + partitiontype="$(lsblk -no "fstype" "$chosen")" + case "$partitiontype" in + "vfat") sudo -A mount -t vfat "$chosen" "$mp" -o rw,umask=0000;; + "exfat") sudo -A mount "$chosen" "$mp" -o uid="$(id -u)",gid="$(id -g)";; + *) sudo -A mount "$chosen" "$mp"; user="$(whoami)"; ug="$(groups | awk '{print $1}')"; sudo -A chown "$user":"$ug" "$mp";; + esac + notify-send "๐ป USB mounting" "$chosen mounted to $mp." + } + +mountandroid() { \ + chosen="$(echo "$anddrives" | dmenu -i -p "Which Android device?")" || exit 1 + chosen="$(echo "$chosen" | cut -d : -f 1)" + getmount "$HOME -maxdepth 3 -type d" + simple-mtpfs --device "$chosen" "$mp" + echo "OK" | dmenu -i -p "Tap Allow on your phone if it asks for permission and then press enter" || exit 1 + simple-mtpfs --device "$chosen" "$mp" + notify-send "๐ค Android Mounting" "Android device mounted to $mp." + } + +asktype() { \ + choice="$(printf "USB\\nAndroid" | dmenu -i -p "Mount a USB drive or Android device?")" || exit 1 + case $choice in + USB) mountusb ;; + Android) mountandroid ;; + esac + } + +anddrives=$(simple-mtpfs -l 2>/dev/null) +usbdrives="$(lsblk -rpo "name,type,size,mountpoint" | grep 'part\|rom' | awk '$4==""{printf "%s (%s)\n",$1,$3}')" + +if [ -z "$usbdrives" ]; then + [ -z "$anddrives" ] && echo "No USB drive or Android device detected" && exit + echo "Android device(s) detected." + mountandroid +else + if [ -z "$anddrives" ]; then + echo "USB drive(s) detected." + mountusb + else + echo "Mountable USB drive(s) and Android device(s) detected." + asktype + fi +fi
\ No newline at end of file diff --git a/.local/bin/ext b/.local/bin/ext new file mode 100755 index 0000000..9810c83 --- /dev/null +++ b/.local/bin/ext @@ -0,0 +1,45 @@ +#!/bin/sh + +# A general, all-purpose extraction script. Not all extraction programs here +# are installed by LARBS automatically. +# +# Default behavior: Extract archive into new directory +# Behavior with `-c` option: Extract contents into current directory + +while getopts "hc" o; do case "${o}" in + c) extracthere="True" ;; + *) printf "Options:\\n -c: Extract archive into current directory rather than a new one.\\n" && exit 1 ;; +esac done + +if [ -z "$extracthere" ]; then + archive="$(readlink -f "$*")" && + directory="$(echo "$archive" | sed 's/\.[^\/.]*$//')" && + mkdir -p "$directory" && + cd "$directory" || exit 1 +else + archive="$(readlink -f "$(echo "$*" | cut -d' ' -f2)" 2>/dev/null)" +fi + +[ -z "$archive" ] && printf "Give archive to extract as argument.\\n" && exit 1 + +if [ -f "$archive" ] ; then + case "$archive" in + *.tar.bz2|*.tbz2) bsdtar -xf "$archive" ;; + *.tar.xz) bsdtar -xf "$archive" ;; + *.tar.gz|*.tgz) bsdtar -xf "$archive" ;; + *.tar.zst) bsdtar -xf "$archive" ;; + *.tar) bsdtar -xf "$archive" ;; + *.lzma) unlzma "$archive" ;; + *.bz2) bunzip2 "$archive" ;; + *.rar) unrar x -ad "$archive" ;; + *.gz) gunzip "$archive" ;; + *.zip) unzip "$archive" ;; + *.Z) uncompress "$archive" ;; + *.7z) 7z x "$archive" ;; + *.xz) unxz "$archive" ;; + *.exe) cabextract "$archive" ;; + *) printf "extract: '%s' - unknown archive method\\n" "$archive" ;; + esac +else + printf "File \"%s\" not found.\\n" "$archive" +fi
\ No newline at end of file diff --git a/.local/bin/genwall b/.local/bin/genwall new file mode 100755 index 0000000..ccbe75e --- /dev/null +++ b/.local/bin/genwall @@ -0,0 +1,18 @@ +#!/bin/sh + +# Dependencies: +# convert wal xdotool xwallpaper + +wall_dir=~/pix/wall + +if [ -z "$1" ]; then + wall="$(find "$wall_dir" -type f -name "*.jpg" -o -name "*.png" | shuf -n1)" +else + wall="$1" +fi + +convert "$wall" ~/.local/share/bg.jpg +xwallpaper --zoom ~/.local/share/bg.jpg +wal -c +wal -i ~/.local/share/bg.jpg +xdotool key super+F5 diff --git a/.local/bin/linkhandler b/.local/bin/linkhandler new file mode 100755 index 0000000..fa74caf --- /dev/null +++ b/.local/bin/linkhandler @@ -0,0 +1,23 @@ +#!/bin/sh + +# Feed script a url or file location. +# If an image, it will view in sxiv, +# if a video or gif, it will view in mpv +# if a music file or pdf, it will download, +# otherwise it opens link in browser. + +# If no url given. Opens browser. For using script as $BROWSER. +[ -z "$1" ] && { "$BROWSER"; exit; } + +case "$1" in + *mkv|*webm|*mp4|*youtube.com/watch*|*youtube.com/playlist*|*youtu.be*|*hooktube.com*|*bitchute.com*|*videos.lukesmith.xyz*|*odysee.com*) + setsid -f mpv -quiet "$1" >/dev/null 2>&1 ;; + *png|*jpg|*jpe|*jpeg|*gif) + curl -sL "$1" > "/tmp/$(echo "$1" | sed "s/.*\///;s/%20/ /g")" && sxiv -a "/tmp/$(echo "$1" | sed "s/.*\///;s/%20/ /g")" >/dev/null 2>&1 & ;; + *pdf|*cbz|*cbr) + curl -sL "$1" > "/tmp/$(echo "$1" | sed "s/.*\///;s/%20/ /g")" && zathura "/tmp/$(echo "$1" | sed "s/.*\///;s/%20/ /g")" >/dev/null 2>&1 & ;; + *mp3|*flac|*opus|*mp3?source*) + qndl "$1" 'curl -LO' >/dev/null 2>&1 ;; + *) + [ -f "$1" ] && setsid -f "$TERMINAL" -e "$EDITOR" "$1" >/dev/null 2>&1 || setsid -f "$BROWSER" "$1" >/dev/null 2>&1 +esac diff --git a/.local/bin/maimshot b/.local/bin/maimshot new file mode 100755 index 0000000..10335f6 --- /dev/null +++ b/.local/bin/maimshot @@ -0,0 +1,11 @@ +#!/bin/sh + +case "$(printf "a selected area (copy)\\ncurrent window (copy)\\nfull screen (copy)\\na selected area\\ncurrent window\\nfull screen" | dmenu -l 6 -i -p "Screenshot which area?")" in + "a selected area (copy)") maim -s | xclip -selection clipboard -t image/png ;; + "current window (copy)") maim -i "$(xdotool getactivewindow)" | xclip -selection clipboard -t image/png ;; + "full screen (copy)") sleep 0.2 ; maim | xclip -selection clipboard -t image/png ;; + "a selected area") maim -s ~/pix/ss/pic-selected-"$(date '+%y-%m-%d-%H-%M').png" ;; + "current window") maim -i "$(xdotool getactivewindow)" ~/pix/ss/pic-window-"$(date '+%y-%m-%d-%H-%M').png" ;; + "full screen") sleep 0.2 ; maim ~/pix/ss/pic-full-"$(date '+%y-%m-%d-%H-%M').png" ;; + +esac diff --git a/.local/bin/newword b/.local/bin/newword new file mode 100755 index 0000000..dc44076 --- /dev/null +++ b/.local/bin/newword @@ -0,0 +1,6 @@ +#!/bin/sh + +word=$(dmenu -p "Enter Word: " <&-) +mean=$(dmenu -p "Enter Meaning: " <&-) + +echo "$word -> $mean" >> ~/.local/share/vocab/words.txt
\ No newline at end of file diff --git a/.local/bin/setwall b/.local/bin/setwall new file mode 100755 index 0000000..35b5f06 --- /dev/null +++ b/.local/bin/setwall @@ -0,0 +1,5 @@ +#!/bin/sh +xwallpaper --zoom ~/.local/share/bg.jpg +wal -c +wal -i ~/.local/share/bg.jpg +xdotool key super+F5 diff --git a/.local/bin/spammer b/.local/bin/spammer new file mode 100755 index 0000000..c23a81c --- /dev/null +++ b/.local/bin/spammer @@ -0,0 +1,9 @@ +#!/bin/sh + +i=0 + +while [ $i -le 100 ] +do + xdotool type "$1" ;xdotool key KP_Enter; sleep 1 ; + +done diff --git a/.local/bin/spot-adblock b/.local/bin/spot-adblock new file mode 100755 index 0000000..c68a75c --- /dev/null +++ b/.local/bin/spot-adblock @@ -0,0 +1,2 @@ +#!/bin/sh +LD_PRELOAD=/usr/local/lib/spotify-adblock.so spotify diff --git a/.local/bin/transadd b/.local/bin/transadd new file mode 100755 index 0000000..ffa31fb --- /dev/null +++ b/.local/bin/transadd @@ -0,0 +1,9 @@ +#!/bin/sh + +# Mimeapp script for adding torrent to transmission-daemon, but will also start the daemon first if not running. + +# transmission-daemon sometimes fails to take remote requests in its first moments, hence the sleep. + +pidof transmission-daemon >/dev/null || (transmission-daemon && notify-send "Starting transmission daemon...") +sleep 3 +transmission-remote -a "$@" && notify-send "๐ฝ Torrent added." diff --git a/.local/bin/ufetch b/.local/bin/ufetch new file mode 100755 index 0000000..eb29af3 --- /dev/null +++ b/.local/bin/ufetch @@ -0,0 +1,83 @@ +#!/bin/sh +# +# ufetch-arch - tiny system info for arch + +## INFO + +# user is already defined +host="$(cat /etc/hostname)" +os='Arch Linux' +kernel="$(uname -sr)" +uptime="$(uptime -p | sed 's/up //')" +packages="$(pacman -Q | wc -l)" +shell="$(basename "${SHELL}")" + +## UI DETECTION + +parse_rcs() { + for f in "${@}"; do + wm="$(tail -n 1 "${f}" 2> /dev/null | cut -d ' ' -f 2)" + [ -n "${wm}" ] && echo "${wm}" && return + done +} + +rcwm="$(parse_rcs "${HOME}/.xinitrc" "${HOME}/.xsession")" + +ui='unknown' +uitype='UI' +if [ -n "${DE}" ]; then + ui="${DE}" + uitype='DE' +elif [ -n "${WM}" ]; then + ui="${WM}" + uitype='WM' +elif [ -n "${XDG_CURRENT_DESKTOP}" ]; then + ui="${XDG_CURRENT_DESKTOP}" + uitype='DE' +elif [ -n "${DESKTOP_SESSION}" ]; then + ui="${DESKTOP_SESSION}" + uitype='DE' +elif [ -n "${rcwm}" ]; then + ui="${rcwm}" + uitype='WM' +elif [ -n "${XDG_SESSION_TYPE}" ]; then + ui="${XDG_SESSION_TYPE}" +fi + +ui="$(basename "${ui}")" + +## DEFINE COLORS + +# probably don't change these +if [ -x "$(command -v tput)" ]; then + bold="$(tput bold)" + black="$(tput setaf 0)" + red="$(tput setaf 1)" + green="$(tput setaf 2)" + yellow="$(tput setaf 3)" + blue="$(tput setaf 4)" + magenta="$(tput setaf 5)" + cyan="$(tput setaf 6)" + white="$(tput setaf 7)" + reset="$(tput sgr0)" +fi + +# you can change these +lc="${reset}${bold}${blue}" # labels +nc="${reset}${bold}${blue}" # user and hostname +ic="${reset}" # info +c0="${reset}${blue}" # first color + +## OUTPUT + +cat <<EOF + +${c0} /\\ ${nc}${USER}${ic}@${nc}${host}${reset} +${c0} / \\ ${lc}OS: ${ic}${os}${reset} +${c0} /\\ \\ ${lc}KERNEL: ${ic}${kernel}${reset} +${c0} / __ \\ ${lc}UPTIME: ${ic}${uptime}${reset} +${c0} / ( ) \\ ${lc}PACKAGES: ${ic}${packages}${reset} +${c0} / __| |__\\\\ ${lc}SHELL: ${ic}${shell}${reset} +${c0} /.\` \`.\\ ${lc}${uitype}: ${ic}${ui}${reset} + +EOF diff --git a/.local/bin/unicode_emoji b/.local/bin/unicode_emoji new file mode 100755 index 0000000..415a268 --- /dev/null +++ b/.local/bin/unicode_emoji @@ -0,0 +1,13 @@ +#!/bin/sh + +# The famous "get a menu of emojis to copy" script. + +# Get user selection via dmenu from emoji file. +chosen=$(cut -d ';' -f1 ~/.local/share/emoji | dmenu -i -l 30 | sed "s/ .*//") + +# Exit if none chosen. +[ -z "$chosen" ] && exit + +xdotool type "$chosen" +printf "$chosen" | xclip -selection clipboard +notify-send "'$chosen' copied to clipboard." &
\ No newline at end of file diff --git a/.local/bin/upfile b/.local/bin/upfile new file mode 100755 index 0000000..4196dc5 --- /dev/null +++ b/.local/bin/upfile @@ -0,0 +1,12 @@ +#!/bin/sh + +if [ -n "$1" ]; then + file=$1 +else + file=$(find . -maxdepth 2 -type f | fzf) +fi + +[ -z "$file" ] && exit + +curl -F"file=@$file" 0x0.st | xclip -sel c +notify-send "The url has been copied to your clipboard." diff --git a/.local/bin/vimv b/.local/bin/vimv new file mode 100755 index 0000000..74844fc --- /dev/null +++ b/.local/bin/vimv @@ -0,0 +1,44 @@ +#!/usr/bin/env bash +set -eu + +# Lists the current directory's files in Vim, so you can edit it and save to rename them +# USAGE: vimv [file1 file2] +# https://github.com/thameera/vimv + +declare -r FILENAMES_FILE=$(mktemp "${TMPDIR:-/tmp}/vimv.XXX") + +trap '{ rm -f "${FILENAMES_FILE}" ; }' EXIT + +if [ $# -ne 0 ]; then + src=( "$@" ) +else + IFS=$'\r\n' GLOBIGNORE='*' command eval 'src=($(ls))' +fi + +for ((i=0;i<${#src[@]};++i)); do + echo "${src[i]}" >> "${FILENAMES_FILE}" +done + +${EDITOR:-vi} "${FILENAMES_FILE}" + +IFS=$'\r\n' GLOBIGNORE='*' command eval 'dest=($(cat "${FILENAMES_FILE}"))' + +if (( ${#src[@]} != ${#dest[@]} )); then + echo "WARN: Number of files changed. Did you delete a line by accident? Aborting.." >&2 + exit 1 +fi + +declare -i count=0 +for ((i=0;i<${#src[@]};++i)); do + if [ "${src[i]}" != "${dest[i]}" ]; then + mkdir -p "$(dirname "${dest[i]}")" + if git ls-files --error-unmatch "${src[i]}" > /dev/null 2>&1; then + git mv "${src[i]}" "${dest[i]}" + else + mv "${src[i]}" "${dest[i]}" + fi + ((++count)) + fi +done + +echo "$count" files renamed. diff --git a/.local/bin/waldl b/.local/bin/waldl new file mode 100755 index 0000000..1957354 --- /dev/null +++ b/.local/bin/waldl @@ -0,0 +1,158 @@ +#!/bin/sh + +# https://github.com/pystardust/waldl +# script to find and download wallpapers from wallhaven +version="0.0.1" + +# Usage: +# waldl <query> +# if query left empty then sh_menu will be used (dmenu by default) +# after the thumbnails are cached, sxiv would open up with the thumbnails +# Select the wallpapers using `m` on the image. ( marking the image in sxiv ) +# press `q` to quit sxiv, the marked images would start downloading + +#################### +## User variables ## +#################### + +# the dir where wallpapers are stored +walldir="$HOME/pix/wallhaven" +# the dir used to cache thumbnails +cachedir="$HOME/.cache/wallhaven" +# sxiv options +sxiv_otps=" -tfpo -z 200" # o is needed for selection +# number of pages to show in search results +# each page contains 24 results +max_pages=4 +# sorting : date_added, relevance, random, views, favorites, toplist +sorting=relevance +# quality : large original small +quality=large +# atleast : least res +atleast=1920x1080 + +# the menu command used when no query is provided +sh_menu () { + : | dmenu -p "search wallhaven: " + # ROFI: comment the previous line and uncomment the next line for rofi + # rofi -dmenu -l 0 -p "search wallpapers" +} + +########################## +## getting search query ## +########################## + +[ -n "$*" ] && query="$*" || query=$( sh_menu ) +[ -z "$query" ] && exit 1 +query=$(printf '%s' "$query" | tr ' ' '+' ) + +###################### +## start up commands # +###################### + +rm -rf "$cachedir" +mkdir -p "$walldir" "$cachedir" + +# progress display command +sh_info () { + printf "%s\n" "$1" >&2 + notify-send "wallhaven" "$1" + [ -n "$2" ] && exit "$2" +} + +# dependency checking +dep_ck () { + for pr; do + command -v $pr >/dev/null 2>&1 || sh_info "command $pr not found, install: $pr" 1 + done +} +dep_ck "sxiv" "curl" "jq" + + +# clean up command that would be called when the program exits +clean_up () { + printf "%s\n" "cleaning up..." >&2 + rm -rf "$datafile" "$cachedir" +} + +# data file to store the api information +datafile="/tmp/wald.$$" + +# clean up if killed +trap "exit" INT TERM +trap "clean_up" EXIT + +################## +## getting data ## +################## + +# request the search results for each page +get_results () { + for page_no in $(seq $max_pages) + do + { + json=$(curl -s -G "https://wallhaven.cc/api/v1/search" \ + -d "q=$1" \ + -d "page=$page_no" \ + -d "atleast=$atleast" \ + -d "sorting=$sorting" + ) + printf "%s\n" "$json" >> "$datafile" + } & + sleep 0.001 + done + wait +} + +# search wallpapers +sh_info "getting data..." +get_results "$query" + +# check if data file is empty, if so then exit +[ -s "$datafile" ] || sh_info "no images found" 1 + +############################ +## downloading thumbnails ## +############################ + +# get a list of thumnails from the data +thumbnails=$( jq -r '.data[]?|.thumbs.'"$quality" < "$datafile") + +[ -z "$thumbnails" ] && sh_info "no-results found" 1 + +# download the thumbnails +sh_info "caching thumbnails..." +for url in $thumbnails +do + printf "url = %s\n" "$url" + printf "output = %s\n" "$cachedir/${url##*/}" +done | curl -Z -K - +#sh_info "downloaded thumbnails..." + +########################### +## user selection (sxiv) ## +########################### + +# extract the id's out of the thumbnail name +image_ids="$(sxiv $sxiv_otps "$cachedir")" +[ -z "$image_ids" ] && exit + +######################### +## download wallpapers ## +######################### + +# download the selected wall papers +mkdir "$walldir/$query" +cd "$walldir/$query" +sh_info "downloading wallpapers..." +for ids in $image_ids +do + ids="${ids##*/}" + ids="${ids%.*}" + url=$( jq -r '.data[]?|select( .id == "'$ids'" )|.path' < "$datafile" ) + printf "url = %s\n" "$url" + printf -- "-O\n" +done | curl -K - + +sh_info "wallpapers downloaded in:- '$walldir/$query'" +sxiv $(ls -c) diff --git a/.local/bin/wordmean b/.local/bin/wordmean new file mode 100755 index 0000000..e8f5f4e --- /dev/null +++ b/.local/bin/wordmean @@ -0,0 +1,6 @@ +#!/bin/sh + +word=$(dmenu -p "Enter Word: " <&-) +#$BROWSER https://www.merriam-webster.com/dictionary/$word +$BROWSER "https://www.google.com/search?hl=en&q=define+$word" + diff --git a/.local/share/applications/file.desktop b/.local/share/applications/file.desktop new file mode 100644 index 0000000..a8e458b --- /dev/null +++ b/.local/share/applications/file.desktop @@ -0,0 +1,4 @@ +[Desktop Entry] +Type=Application +Name=File Manager +Exec=/usr/local/bin/st -e fm %u diff --git a/.local/share/applications/img.desktop b/.local/share/applications/img.desktop new file mode 100644 index 0000000..42aa81e --- /dev/null +++ b/.local/share/applications/img.desktop @@ -0,0 +1,4 @@ +[Desktop Entry] +Type=Application +Name=Image viewer +Exec=/usr/bin/sxiv -a %f diff --git a/.local/share/applications/pdf.desktop b/.local/share/applications/pdf.desktop new file mode 100644 index 0000000..8c38677 --- /dev/null +++ b/.local/share/applications/pdf.desktop @@ -0,0 +1,4 @@ +[Desktop Entry] +Type=Application +Name=PDF reader +Exec=/usr/bin/zathura %u diff --git a/.local/share/applications/rss.desktop b/.local/share/applications/rss.desktop new file mode 100644 index 0000000..6fafc4f --- /dev/null +++ b/.local/share/applications/rss.desktop @@ -0,0 +1,4 @@ +[Desktop Entry] +Type=Application +Name=RSS feed addition +Exec=/usr/bin/env rssadd %U diff --git a/.local/share/applications/text.desktop b/.local/share/applications/text.desktop new file mode 100644 index 0000000..41ee05f --- /dev/null +++ b/.local/share/applications/text.desktop @@ -0,0 +1,4 @@ +[Desktop Entry] +Type=Application +Name=Text editor +Exec=/usr/local/bin/st -e nvim %u diff --git a/.local/share/applications/torrent.desktop b/.local/share/applications/torrent.desktop new file mode 100644 index 0000000..f6d28d9 --- /dev/null +++ b/.local/share/applications/torrent.desktop @@ -0,0 +1,4 @@ +[Desktop Entry] +Type=Application +Name=Torrent +Exec=/usr/bin/env transadd %U diff --git a/.local/share/applications/trilium-notes.desktop b/.local/share/applications/trilium-notes.desktop new file mode 100644 index 0000000..0cca26d --- /dev/null +++ b/.local/share/applications/trilium-notes.desktop @@ -0,0 +1,7 @@ +[Desktop Entry] +Type=Application +Name=Trilium Notes +Icon=/opt/trilium-bin/icon.png +Exec=/opt/trilium-bin/trilium +Categories=Office +Terminal=false diff --git a/.local/share/emoji b/.local/share/emoji new file mode 100644 index 0000000..6803731 --- /dev/null +++ b/.local/share/emoji @@ -0,0 +1,1630 @@ +๐ grinning face +๐ grinning face with big eyes +๐ grinning face with smiling eyes +๐ beaming face with smiling eyes +๐ grinning squinting face +๐
grinning face with sweat +๐คฃ rolling on the floor laughing +๐ face with tears of joy +๐ slightly smiling face +๐ upside-down face +๐ซ melting face +๐ winking face +๐ smiling face with smiling eyes +๐ smiling face with halo +๐ฅฐ smiling face with hearts +๐ smiling face with heart-eyes +๐คฉ star-struck +๐ face blowing a kiss +๐ kissing face +โบ๏ธ smiling face +๐ kissing face with closed eyes +๐ kissing face with smiling eyes +๐ฅฒ smiling face with tear +๐ face savoring food +๐ face with tongue +๐ winking face with tongue +๐คช zany face +๐ squinting face with tongue +๐ค money-mouth face +๐ค smiling face with open hands +๐คญ face with hand over mouth +๐ซข face with open eyes and hand over mouth +๐ซฃ face with peeking eye +๐คซ shushing face +๐ค thinking face +๐ซก saluting face +๐ค zipper-mouth face +๐คจ face with raised eyebrow +๐ neutral face +๐ expressionless face +๐ถ face without mouth +๐ซฅ dotted line face +๐ smirking face +๐ unamused face +๐ face with rolling eyes +๐ฌ grimacing face +๐คฅ lying face +๐ relieved face +๐ pensive face +๐ช sleepy face +๐คค drooling face +๐ด sleeping face +๐ท face with medical mask +๐ค face with thermometer +๐ค face with head-bandage +๐คข nauseated face +๐คฎ face vomiting +๐คง sneezing face +๐ฅต hot face +๐ฅถ cold face +๐ฅด woozy face +๐ต face with crossed-out eyes +๐คฏ exploding head +๐ค cowboy hat face +๐ฅณ partying face +๐ฅธ disguised face +๐ smiling face with sunglasses +๐ค nerd face +๐ง face with monocle +๐ confused face +๐ซค face with diagonal mouth +๐ worried face +๐ slightly frowning face +โน๏ธ frowning face +๐ฎ face with open mouth +๐ฏ hushed face +๐ฒ astonished face +๐ณ flushed face +๐ฅบ pleading face +๐ฅน face holding back tears +๐ฆ frowning face with open mouth +๐ง anguished face +๐จ fearful face +๐ฐ anxious face with sweat +๐ฅ sad but relieved face +๐ข crying face +๐ญ loudly crying face +๐ฑ face screaming in fear +๐ confounded face +๐ฃ persevering face +๐ disappointed face +๐ downcast face with sweat +๐ฉ weary face +๐ซ tired face +๐ฅฑ yawning face +๐ค face with steam from nose +๐ก pouting face +๐ angry face +๐คฌ face with symbols on mouth +๐ smiling face with horns +๐ฟ angry face with horns +๐ skull +โ ๏ธ skull and crossbones +๐ฉ pile of poo +๐คก clown face +๐น ogre +๐บ goblin +๐ป ghost +๐ฝ alien +๐พ alien monster +๐ค robot +๐บ grinning cat +๐ธ grinning cat with smiling eyes +๐น cat with tears of joy +๐ป smiling cat with heart-eyes +๐ผ cat with wry smile +๐ฝ kissing cat +๐ weary cat +๐ฟ crying cat +๐พ pouting cat +๐ see-no-evil monkey +๐ hear-no-evil monkey +๐ speak-no-evil monkey +๐ kiss mark +๐ love letter +๐ heart with arrow +๐ heart with ribbon +๐ sparkling heart +๐ growing heart +๐ beating heart +๐ revolving hearts +๐ two hearts +๐ heart decoration +โฃ๏ธ heart exclamation +๐ broken heart +โค๏ธ red heart +๐งก orange heart +๐ yellow heart +๐ green heart +๐ blue heart +๐ purple heart +๐ค brown heart +๐ค black heart +๐ค white heart +๐ฏ hundred points +๐ข anger symbol +๐ฅ collision +๐ซ dizzy +๐ฆ sweat droplets +๐จ dashing away +๐ณ๏ธ hole +๐ฃ bomb +๐ฌ speech balloon +๐จ๏ธ left speech bubble +๐ฏ๏ธ right anger bubble +๐ญ thought balloon +๐ค zzz +๐ waving hand +๐ค raised back of hand +๐๏ธ hand with fingers splayed +โ raised hand +๐ vulcan salute +๐ซฑ rightwards hand +๐ซฒ leftwards hand +๐ซณ palm down hand +๐ซด palm up hand +๐ OK hand +๐ค pinched fingers +๐ค pinching hand +โ๏ธ victory hand +๐ค crossed fingers +๐ซฐ hand with index finger and thumb crossed +๐ค love-you gesture +๐ค sign of the horns +๐ค call me hand +๐ backhand index pointing left +๐ backhand index pointing right +๐ backhand index pointing up +๐ middle finger +๐ backhand index pointing down +โ๏ธ index pointing up +๐ซต index pointing at the viewer +๐ thumbs up +๐ thumbs down +โ raised fist +๐ oncoming fist +๐ค left-facing fist +๐ค right-facing fist +๐ clapping hands +๐ raising hands +๐ซถ heart hands +๐ open hands +๐คฒ palms up together +๐ค handshake +๐ folded hands +โ๏ธ writing hand +๐
nail polish +๐คณ selfie +๐ช flexed biceps +๐ฆพ mechanical arm +๐ฆฟ mechanical leg +๐ฆต leg +๐ฆถ foot +๐ ear +๐ฆป ear with hearing aid +๐ nose +๐ง brain +๐ซ anatomical heart +๐ซ lungs +๐ฆท tooth +๐ฆด bone +๐ eyes +๐๏ธ eye +๐
tongue +๐ mouth +๐ซฆ biting lip +๐ถ baby +๐ง child +๐ฆ boy +๐ง girl +๐ง person +๐ฑ person: blond hair +๐จ man +๐ง person: beard +๐ฉ woman +๐ง older person +๐ด old man +๐ต old woman +๐ person frowning +๐ person pouting +๐
person gesturing NO +๐ person gesturing OK +๐ person tipping hand +๐ person raising hand +๐ง deaf person +๐ person bowing +๐คฆ person facepalming +๐คท person shrugging +๐ฎ police officer +๐ต๏ธ detective +๐ guard +๐ฅท ninja +๐ท construction worker +๐ซ
person with crown +๐คด prince +๐ธ princess +๐ณ person wearing turban +๐ฒ person with skullcap +๐ง woman with headscarf +๐คต person in tuxedo +๐ฐ person with veil +๐คฐ pregnant woman +๐ซ pregnant man +๐ซ pregnant person +๐คฑ breast-feeding +๐ผ baby angel +๐
Santa Claus +๐คถ Mrs. Claus +๐ฆธ superhero +๐ฆน supervillain +๐ง mage +๐ง fairy +๐ง vampire +๐ง merperson +๐ง elf +๐ง genie +๐ง zombie +๐ง troll +๐ person getting massage +๐ person getting haircut +๐ถ person walking +๐ง person standing +๐ง person kneeling +๐ person running +๐ woman dancing +๐บ man dancing +๐ด๏ธ person in suit levitating +๐ฏ people with bunny ears +๐ง person in steamy room +๐ง person climbing +๐คบ person fencing +๐ horse racing +โท๏ธ skier +๐ snowboarder +๐๏ธ person golfing +๐ person surfing +๐ฃ person rowing boat +๐ person swimming +โน๏ธ person bouncing ball +๐๏ธ person lifting weights +๐ด person biking +๐ต person mountain biking +๐คธ person cartwheeling +๐คผ people wrestling +๐คฝ person playing water polo +๐คพ person playing handball +๐คน person juggling +๐ง person in lotus position +๐ person taking bath +๐ person in bed +๐ญ women holding hands +๐ซ woman and man holding hands +๐ฌ men holding hands +๐ kiss +๐ couple with heart +๐ช family +๐ฃ๏ธ speaking head +๐ค bust in silhouette +๐ฅ busts in silhouette +๐ซ people hugging +๐ฃ footprints +๐ต monkey face +๐ monkey +๐ฆ gorilla +๐ฆง orangutan +๐ถ dog face +๐ dog +๐ฆฎ guide dog +๐ฉ poodle +๐บ wolf +๐ฆ fox +๐ฆ raccoon +๐ฑ cat face +๐ cat +๐ฆ lion +๐ฏ tiger face +๐
tiger +๐ leopard +๐ด horse face +๐ horse +๐ฆ unicorn +๐ฆ zebra +๐ฆ deer +๐ฆฌ bison +๐ฎ cow face +๐ ox +๐ water buffalo +๐ cow +๐ท pig face +๐ pig +๐ boar +๐ฝ pig nose +๐ ram +๐ ewe +๐ goat +๐ช camel +๐ซ two-hump camel +๐ฆ llama +๐ฆ giraffe +๐ elephant +๐ฆฃ mammoth +๐ฆ rhinoceros +๐ฆ hippopotamus +๐ญ mouse face +๐ mouse +๐ rat +๐น hamster +๐ฐ rabbit face +๐ rabbit +๐ฟ๏ธ chipmunk +๐ฆซ beaver +๐ฆ hedgehog +๐ฆ bat +๐ป bear +๐จ koala +๐ผ panda +๐ฆฅ sloth +๐ฆฆ otter +๐ฆจ skunk +๐ฆ kangaroo +๐ฆก badger +๐พ paw prints +๐ฆ turkey +๐ chicken +๐ rooster +๐ฃ hatching chick +๐ค baby chick +๐ฅ front-facing baby chick +๐ฆ bird +๐ง penguin +๐๏ธ dove +๐ฆ
eagle +๐ฆ duck +๐ฆข swan +๐ฆ owl +๐ฆค dodo +๐ชถ feather +๐ฆฉ flamingo +๐ฆ peacock +๐ฆ parrot +๐ธ frog +๐ crocodile +๐ข turtle +๐ฆ lizard +๐ snake +๐ฒ dragon face +๐ dragon +๐ฆ sauropod +๐ฆ T-Rex +๐ณ spouting whale +๐ whale +๐ฌ dolphin +๐ฆญ seal +๐ fish +๐ tropical fish +๐ก blowfish +๐ฆ shark +๐ octopus +๐ spiral shell +๐ชธ coral +๐ snail +๐ฆ butterfly +๐ bug +๐ ant +๐ honeybee +๐ชฒ beetle +๐ lady beetle +๐ฆ cricket +๐ชณ cockroach +๐ท๏ธ spider +๐ธ๏ธ spider web +๐ฆ scorpion +๐ฆ mosquito +๐ชฐ fly +๐ชฑ worm +๐ฆ microbe +๐ bouquet +๐ธ cherry blossom +๐ฎ white flower +๐ชท lotus +๐ต๏ธ rosette +๐น rose +๐ฅ wilted flower +๐บ hibiscus +๐ป sunflower +๐ผ blossom +๐ท tulip +๐ฑ seedling +๐ชด potted plant +๐ฒ evergreen tree +๐ณ deciduous tree +๐ด palm tree +๐ต cactus +๐พ sheaf of rice +๐ฟ herb +โ๏ธ shamrock +๐ four leaf clover +๐ maple leaf +๐ fallen leaf +๐ leaf fluttering in wind +๐ชน empty nest +๐ชบ nest with eggs +๐ grapes +๐ melon +๐ watermelon +๐ tangerine +๐ lemon +๐ banana +๐ pineapple +๐ฅญ mango +๐ red apple +๐ green apple +๐ pear +๐ peach +๐ cherries +๐ strawberry +๐ซ blueberries +๐ฅ kiwi fruit +๐
tomato +๐ซ olive +๐ฅฅ coconut +๐ฅ avocado +๐ eggplant +๐ฅ potato +๐ฅ carrot +๐ฝ ear of corn +๐ถ๏ธ hot pepper +๐ซ bell pepper +๐ฅ cucumber +๐ฅฌ leafy green +๐ฅฆ broccoli +๐ง garlic +๐ง
onion +๐ mushroom +๐ฅ peanuts +๐ซ beans +๐ฐ chestnut +๐ bread +๐ฅ croissant +๐ฅ baguette bread +๐ซ flatbread +๐ฅจ pretzel +๐ฅฏ bagel +๐ฅ pancakes +๐ง waffle +๐ง cheese wedge +๐ meat on bone +๐ poultry leg +๐ฅฉ cut of meat +๐ฅ bacon +๐ hamburger +๐ french fries +๐ pizza +๐ญ hot dog +๐ฅช sandwich +๐ฎ taco +๐ฏ burrito +๐ซ tamale +๐ฅ stuffed flatbread +๐ง falafel +๐ฅ egg +๐ณ cooking +๐ฅ shallow pan of food +๐ฒ pot of food +๐ซ fondue +๐ฅฃ bowl with spoon +๐ฅ green salad +๐ฟ popcorn +๐ง butter +๐ง salt +๐ฅซ canned food +๐ฑ bento box +๐ rice cracker +๐ rice ball +๐ cooked rice +๐ curry rice +๐ steaming bowl +๐ spaghetti +๐ roasted sweet potato +๐ข oden +๐ฃ sushi +๐ค fried shrimp +๐ฅ fish cake with swirl +๐ฅฎ moon cake +๐ก dango +๐ฅ dumpling +๐ฅ fortune cookie +๐ฅก takeout box +๐ฆ crab +๐ฆ lobster +๐ฆ shrimp +๐ฆ squid +๐ฆช oyster +๐ฆ soft ice cream +๐ง shaved ice +๐จ ice cream +๐ฉ doughnut +๐ช cookie +๐ birthday cake +๐ฐ shortcake +๐ง cupcake +๐ฅง pie +๐ซ chocolate bar +๐ฌ candy +๐ญ lollipop +๐ฎ custard +๐ฏ honey pot +๐ผ baby bottle +๐ฅ glass of milk +โ hot beverage +๐ซ teapot +๐ต teacup without handle +๐ถ sake +๐พ bottle with popping cork +๐ท wine glass +๐ธ cocktail glass +๐น tropical drink +๐บ beer mug +๐ป clinking beer mugs +๐ฅ clinking glasses +๐ฅ tumbler glass +๐ซ pouring liquid +๐ฅค cup with straw +๐ง bubble tea +๐ง beverage box +๐ง mate +๐ง ice +๐ฅข chopsticks +๐ฝ๏ธ fork and knife with plate +๐ด fork and knife +๐ฅ spoon +๐ช kitchen knife +๐ซ jar +๐บ amphora +๐ globe showing Europe-Africa +๐ globe showing Americas +๐ globe showing Asia-Australia +๐ globe with meridians +๐บ๏ธ world map +๐พ map of Japan +๐งญ compass +๐๏ธ snow-capped mountain +โฐ๏ธ mountain +๐ volcano +๐ป mount fuji +๐๏ธ camping +๐๏ธ beach with umbrella +๐๏ธ desert +๐๏ธ desert island +๐๏ธ national park +๐๏ธ stadium +๐๏ธ classical building +๐๏ธ building construction +๐งฑ brick +๐ชจ rock +๐ชต wood +๐ hut +๐๏ธ houses +๐๏ธ derelict house +๐ house +๐ก house with garden +๐ข office building +๐ฃ Japanese post office +๐ค post office +๐ฅ hospital +๐ฆ bank +๐จ hotel +๐ฉ love hotel +๐ช convenience store +๐ซ school +๐ฌ department store +๐ญ factory +๐ฏ Japanese castle +๐ฐ castle +๐ wedding +๐ผ Tokyo tower +๐ฝ Statue of Liberty +โช church +๐ mosque +๐ hindu temple +๐ synagogue +โฉ๏ธ shinto shrine +๐ kaaba +โฒ fountain +โบ tent +๐ foggy +๐ night with stars +๐๏ธ cityscape +๐ sunrise over mountains +๐
sunrise +๐ cityscape at dusk +๐ sunset +๐ bridge at night +โจ๏ธ hot springs +๐ carousel horse +๐ playground slide +๐ก ferris wheel +๐ข roller coaster +๐ barber pole +๐ช circus tent +๐ locomotive +๐ railway car +๐ high-speed train +๐
bullet train +๐ train +๐ metro +๐ light rail +๐ station +๐ tram +๐ monorail +๐ mountain railway +๐ tram car +๐ bus +๐ oncoming bus +๐ trolleybus +๐ minibus +๐ ambulance +๐ fire engine +๐ police car +๐ oncoming police car +๐ taxi +๐ oncoming taxi +๐ automobile +๐ oncoming automobile +๐ sport utility vehicle +๐ป pickup truck +๐ delivery truck +๐ articulated lorry +๐ tractor +๐๏ธ racing car +๐๏ธ motorcycle +๐ต motor scooter +๐ฆฝ manual wheelchair +๐ฆผ motorized wheelchair +๐บ auto rickshaw +๐ฒ bicycle +๐ด kick scooter +๐น skateboard +๐ผ roller skate +๐ bus stop +๐ฃ๏ธ motorway +๐ค๏ธ railway track +๐ข๏ธ oil drum +โฝ fuel pump +๐ wheel +๐จ police car light +๐ฅ horizontal traffic light +๐ฆ vertical traffic light +๐ stop sign +๐ง construction +โ anchor +๐ ring buoy +โต sailboat +๐ถ canoe +๐ค speedboat +๐ณ๏ธ passenger ship +โด๏ธ ferry +๐ฅ๏ธ motor boat +๐ข ship +โ๏ธ airplane +๐ฉ๏ธ small airplane +๐ซ airplane departure +๐ฌ airplane arrival +๐ช parachute +๐บ seat +๐ helicopter +๐ suspension railway +๐ mountain cableway +๐ก aerial tramway +๐ฐ๏ธ satellite +๐ rocket +๐ธ flying saucer +๐๏ธ bellhop bell +๐งณ luggage +โ hourglass done +โณ hourglass not done +โ watch +โฐ alarm clock +โฑ๏ธ stopwatch +โฒ๏ธ timer clock +๐ฐ๏ธ mantelpiece clock +๐ twelve oโclock +๐ง twelve-thirty +๐ one oโclock +๐ one-thirty +๐ two oโclock +๐ two-thirty +๐ three oโclock +๐ three-thirty +๐ four oโclock +๐ four-thirty +๐ five oโclock +๐ five-thirty +๐ six oโclock +๐ก six-thirty +๐ seven oโclock +๐ข seven-thirty +๐ eight oโclock +๐ฃ eight-thirty +๐ nine oโclock +๐ค nine-thirty +๐ ten oโclock +๐ฅ ten-thirty +๐ eleven oโclock +๐ฆ eleven-thirty +๐ new moon +๐ waxing crescent moon +๐ first quarter moon +๐ waxing gibbous moon +๐ full moon +๐ waning gibbous moon +๐ last quarter moon +๐ waning crescent moon +๐ crescent moon +๐ new moon face +๐ first quarter moon face +๐ last quarter moon face +๐ก๏ธ thermometer +โ๏ธ sun +๐ full moon face +๐ sun with face +๐ช ringed planet +โญ star +๐ glowing star +๐ shooting star +๐ milky way +โ๏ธ cloud +โ
sun behind cloud +โ๏ธ cloud with lightning and rain +๐ค๏ธ sun behind small cloud +๐ฅ๏ธ sun behind large cloud +๐ฆ๏ธ sun behind rain cloud +๐ง๏ธ cloud with rain +๐จ๏ธ cloud with snow +๐ฉ๏ธ cloud with lightning +๐ช๏ธ tornado +๐ซ๏ธ fog +๐ฌ๏ธ wind face +๐ cyclone +๐ rainbow +๐ closed umbrella +โ๏ธ umbrella +โ umbrella with rain drops +โฑ๏ธ umbrella on ground +โก high voltage +โ๏ธ snowflake +โ๏ธ snowman +โ snowman without snow +โ๏ธ comet +๐ฅ fire +๐ง droplet +๐ water wave +๐ jack-o-lantern +๐ Christmas tree +๐ fireworks +๐ sparkler +๐งจ firecracker +โจ sparkles +๐ balloon +๐ party popper +๐ confetti ball +๐ tanabata tree +๐ pine decoration +๐ Japanese dolls +๐ carp streamer +๐ wind chime +๐ moon viewing ceremony +๐งง red envelope +๐ ribbon +๐ wrapped gift +๐๏ธ reminder ribbon +๐๏ธ admission tickets +๐ซ ticket +๐๏ธ military medal +๐ trophy +๐
sports medal +๐ฅ 1st place medal +๐ฅ 2nd place medal +๐ฅ 3rd place medal +โฝ soccer ball +โพ baseball +๐ฅ softball +๐ basketball +๐ volleyball +๐ american football +๐ rugby football +๐พ tennis +๐ฅ flying disc +๐ณ bowling +๐ cricket game +๐ field hockey +๐ ice hockey +๐ฅ lacrosse +๐ ping pong +๐ธ badminton +๐ฅ boxing glove +๐ฅ martial arts uniform +๐ฅ
goal net +โณ flag in hole +โธ๏ธ ice skate +๐ฃ fishing pole +๐คฟ diving mask +๐ฝ running shirt +๐ฟ skis +๐ท sled +๐ฅ curling stone +๐ฏ bullseye +๐ช yo-yo +๐ช kite +๐ฑ pool 8 ball +๐ฎ crystal ball +๐ช magic wand +๐งฟ nazar amulet +๐ชฌ hamsa +๐ฎ video game +๐น๏ธ joystick +๐ฐ slot machine +๐ฒ game die +๐งฉ puzzle piece +๐งธ teddy bear +๐ช
piรฑata +๐ชฉ mirror ball +๐ช nesting dolls +โ ๏ธ spade suit +โฅ๏ธ heart suit +โฆ๏ธ diamond suit +โฃ๏ธ club suit +โ๏ธ chess pawn +๐ joker +๐ mahjong red dragon +๐ด flower playing cards +๐ญ performing arts +๐ผ๏ธ framed picture +๐จ artist palette +๐งต thread +๐ชก sewing needle +๐งถ yarn +๐ชข knot +๐ glasses +๐ถ๏ธ sunglasses +๐ฅฝ goggles +๐ฅผ lab coat +๐ฆบ safety vest +๐ necktie +๐ t-shirt +๐ jeans +๐งฃ scarf +๐งค gloves +๐งฅ coat +๐งฆ socks +๐ dress +๐ kimono +๐ฅป sari +๐ฉฑ one-piece swimsuit +๐ฉฒ briefs +๐ฉณ shorts +๐ bikini +๐ womanโs clothes +๐ purse +๐ handbag +๐ clutch bag +๐๏ธ shopping bags +๐ backpack +๐ฉด thong sandal +๐ manโs shoe +๐ running shoe +๐ฅพ hiking boot +๐ฅฟ flat shoe +๐ high-heeled shoe +๐ก womanโs sandal +๐ฉฐ ballet shoes +๐ข womanโs boot +๐ crown +๐ womanโs hat +๐ฉ top hat +๐ graduation cap +๐งข billed cap +๐ช military helmet +โ๏ธ rescue workerโs helmet +๐ฟ prayer beads +๐ lipstick +๐ ring +๐ gem stone +๐ muted speaker +๐ speaker low volume +๐ speaker medium volume +๐ speaker high volume +๐ข loudspeaker +๐ฃ megaphone +๐ฏ postal horn +๐ bell +๐ bell with slash +๐ผ musical score +๐ต musical note +๐ถ musical notes +๐๏ธ studio microphone +๐๏ธ level slider +๐๏ธ control knobs +๐ค microphone +๐ง headphone +๐ป radio +๐ท saxophone +๐ช accordion +๐ธ guitar +๐น musical keyboard +๐บ trumpet +๐ป violin +๐ช banjo +๐ฅ drum +๐ช long drum +๐ฑ mobile phone +๐ฒ mobile phone with arrow +โ๏ธ telephone +๐ telephone receiver +๐ pager +๐ fax machine +๐ battery +๐ชซ low battery +๐ electric plug +๐ป laptop +๐ฅ๏ธ desktop computer +๐จ๏ธ printer +โจ๏ธ keyboard +๐ฑ๏ธ computer mouse +๐ฒ๏ธ trackball +๐ฝ computer disk +๐พ floppy disk +๐ฟ optical disk +๐ dvd +๐งฎ abacus +๐ฅ movie camera +๐๏ธ film frames +๐ฝ๏ธ film projector +๐ฌ clapper board +๐บ television +๐ท camera +๐ธ camera with flash +๐น video camera +๐ผ videocassette +๐ magnifying glass tilted left +๐ magnifying glass tilted right +๐ฏ๏ธ candle +๐ก light bulb +๐ฆ flashlight +๐ฎ red paper lantern +๐ช diya lamp +๐ notebook with decorative cover +๐ closed book +๐ open book +๐ green book +๐ blue book +๐ orange book +๐ books +๐ notebook +๐ ledger +๐ page with curl +๐ scroll +๐ page facing up +๐ฐ newspaper +๐๏ธ rolled-up newspaper +๐ bookmark tabs +๐ bookmark +๐ท๏ธ label +๐ฐ money bag +๐ช coin +๐ด yen banknote +๐ต dollar banknote +๐ถ euro banknote +๐ท pound banknote +๐ธ money with wings +๐ณ credit card +๐งพ receipt +๐น chart increasing with yen +โ๏ธ envelope +๐ง e-mail +๐จ incoming envelope +๐ฉ envelope with arrow +๐ค outbox tray +๐ฅ inbox tray +๐ฆ package +๐ซ closed mailbox with raised flag +๐ช closed mailbox with lowered flag +๐ฌ open mailbox with raised flag +๐ญ open mailbox with lowered flag +๐ฎ postbox +๐ณ๏ธ ballot box with ballot +โ๏ธ pencil +โ๏ธ black nib +๐๏ธ fountain pen +๐๏ธ pen +๐๏ธ paintbrush +๐๏ธ crayon +๐ memo +๐ผ briefcase +๐ file folder +๐ open file folder +๐๏ธ card index dividers +๐
calendar +๐ tear-off calendar +๐๏ธ spiral notepad +๐๏ธ spiral calendar +๐ card index +๐ chart increasing +๐ chart decreasing +๐ bar chart +๐ clipboard +๐ pushpin +๐ round pushpin +๐ paperclip +๐๏ธ linked paperclips +๐ straight ruler +๐ triangular ruler +โ๏ธ scissors +๐๏ธ card file box +๐๏ธ file cabinet +๐๏ธ wastebasket +๐ locked +๐ unlocked +๐ locked with pen +๐ locked with key +๐ key +๐๏ธ old key +๐จ hammer +๐ช axe +โ๏ธ pick +โ๏ธ hammer and pick +๐ ๏ธ hammer and wrench +๐ก๏ธ dagger +โ๏ธ crossed swords +๐ซ water pistol +๐ช boomerang +๐น bow and arrow +๐ก๏ธ shield +๐ช carpentry saw +๐ง wrench +๐ช screwdriver +๐ฉ nut and bolt +โ๏ธ gear +๐๏ธ clamp +โ๏ธ balance scale +๐ฆฏ white cane +๐ link +โ๏ธ chains +๐ช hook +๐งฐ toolbox +๐งฒ magnet +๐ช ladder +โ๏ธ alembic +๐งช test tube +๐งซ petri dish +๐งฌ dna +๐ฌ microscope +๐ญ telescope +๐ก satellite antenna +๐ syringe +๐ฉธ drop of blood +๐ pill +๐ฉน adhesive bandage +๐ฉผ crutch +๐ฉบ stethoscope +๐ฉป x-ray +๐ช door +๐ elevator +๐ช mirror +๐ช window +๐๏ธ bed +๐๏ธ couch and lamp +๐ช chair +๐ฝ toilet +๐ช plunger +๐ฟ shower +๐ bathtub +๐ชค mouse trap +๐ช razor +๐งด lotion bottle +๐งท safety pin +๐งน broom +๐งบ basket +๐งป roll of paper +๐ชฃ bucket +๐งผ soap +๐ซง bubbles +๐ชฅ toothbrush +๐งฝ sponge +๐งฏ fire extinguisher +๐ shopping cart +๐ฌ cigarette +โฐ๏ธ coffin +๐ชฆ headstone +โฑ๏ธ funeral urn +๐ฟ moai +๐ชง placard +๐ชช identification card +๐ง ATM sign +๐ฎ litter in bin sign +๐ฐ potable water +โฟ wheelchair symbol +๐น menโs room +๐บ womenโs room +๐ป restroom +๐ผ baby symbol +๐พ water closet +๐ passport control +๐ customs +๐ baggage claim +๐
left luggage +โ ๏ธ warning +๐ธ children crossing +โ no entry +๐ซ prohibited +๐ณ no bicycles +๐ญ no smoking +๐ฏ no littering +๐ฑ non-potable water +๐ท no pedestrians +๐ต no mobile phones +๐ no one under eighteen +โข๏ธ radioactive +โฃ๏ธ biohazard +โฌ๏ธ up arrow +โ๏ธ up-right arrow +โก๏ธ right arrow +โ๏ธ down-right arrow +โฌ๏ธ down arrow +โ๏ธ down-left arrow +โฌ
๏ธ left arrow +โ๏ธ up-left arrow +โ๏ธ up-down arrow +โ๏ธ left-right arrow +โฉ๏ธ right arrow curving left +โช๏ธ left arrow curving right +โคด๏ธ right arrow curving up +โคต๏ธ right arrow curving down +๐ clockwise vertical arrows +๐ counterclockwise arrows button +๐ BACK arrow +๐ END arrow +๐ ON! arrow +๐ SOON arrow +๐ TOP arrow +๐ place of worship +โ๏ธ atom symbol +๐๏ธ om +โก๏ธ star of David +โธ๏ธ wheel of dharma +โฏ๏ธ yin yang +โ๏ธ latin cross +โฆ๏ธ orthodox cross +โช๏ธ star and crescent +โฎ๏ธ peace symbol +๐ menorah +๐ฏ dotted six-pointed star +โ Aries +โ Taurus +โ Gemini +โ Cancer +โ Leo +โ Virgo +โ Libra +โ Scorpio +โ Sagittarius +โ Capricorn +โ Aquarius +โ Pisces +โ Ophiuchus +๐ shuffle tracks button +๐ repeat button +๐ repeat single button +โถ๏ธ play button +โฉ fast-forward button +โญ๏ธ next track button +โฏ๏ธ play or pause button +โ๏ธ reverse button +โช fast reverse button +โฎ๏ธ last track button +๐ผ upwards button +โซ fast up button +๐ฝ downwards button +โฌ fast down button +โธ๏ธ pause button +โน๏ธ stop button +โบ๏ธ record button +โ๏ธ eject button +๐ฆ cinema +๐
dim button +๐ bright button +๐ถ antenna bars +๐ณ vibration mode +๐ด mobile phone off +โ๏ธ female sign +โ๏ธ male sign +โง๏ธ transgender symbol +โ๏ธ multiply +โ plus +โ minus +โ divide +๐ฐ heavy equals sign +โพ๏ธ infinity +โผ๏ธ double exclamation mark +โ๏ธ exclamation question mark +โ red question mark +โ white question mark +โ white exclamation mark +โ red exclamation mark +ใฐ๏ธ wavy dash +๐ฑ currency exchange +๐ฒ heavy dollar sign +โ๏ธ medical symbol +โป๏ธ recycling symbol +โ๏ธ fleur-de-lis +๐ฑ trident emblem +๐ name badge +๐ฐ Japanese symbol for beginner +โญ hollow red circle +โ
check mark button +โ๏ธ check box with check +โ๏ธ check mark +โ cross mark +โ cross mark button +โฐ curly loop +โฟ double curly loop +ใฝ๏ธ part alternation mark +โณ๏ธ eight-spoked asterisk +โด๏ธ eight-pointed star +โ๏ธ sparkle +ยฉ๏ธ copyright +ยฎ๏ธ registered +โข๏ธ trade mark +#๏ธโฃ keycap: # +*๏ธโฃ keycap: * +0๏ธโฃ keycap: 0 +1๏ธโฃ keycap: 1 +2๏ธโฃ keycap: 2 +3๏ธโฃ keycap: 3 +4๏ธโฃ keycap: 4 +5๏ธโฃ keycap: 5 +6๏ธโฃ keycap: 6 +7๏ธโฃ keycap: 7 +8๏ธโฃ keycap: 8 +9๏ธโฃ keycap: 9 +๐ keycap: 10 +๐ input latin uppercase +๐ก input latin lowercase +๐ข input numbers +๐ฃ input symbols +๐ค input latin letters +๐
ฐ๏ธ A button (blood type) +๐ AB button (blood type) +๐
ฑ๏ธ B button (blood type) +๐ CL button +๐ COOL button +๐ FREE button +โน๏ธ information +๐ ID button +โ๏ธ circled M +๐ NEW button +๐ NG button +๐
พ๏ธ O button (blood type) +๐ OK button +๐
ฟ๏ธ P button +๐ SOS button +๐ UP! button +๐ VS button +๐ Japanese โhereโ button +๐๏ธ Japanese โservice chargeโ button +๐ท๏ธ Japanese โmonthly amountโ button +๐ถ Japanese โnot free of chargeโ button +๐ฏ Japanese โreservedโ button +๐ Japanese โbargainโ button +๐น Japanese โdiscountโ button +๐ Japanese โfree of chargeโ button +๐ฒ Japanese โprohibitedโ button +๐ Japanese โacceptableโ button +๐ธ Japanese โapplicationโ button +๐ด Japanese โpassing gradeโ button +๐ณ Japanese โvacancyโ button +ใ๏ธ Japanese โcongratulationsโ button +ใ๏ธ Japanese โsecretโ button +๐บ Japanese โopen for businessโ button +๐ต Japanese โno vacancyโ button +๐ด red circle +๐ orange circle +๐ก yellow circle +๐ข green circle +๐ต blue circle +๐ฃ purple circle +๐ค brown circle +โซ black circle +โช white circle +๐ฅ red square +๐ง orange square +๐จ yellow square +๐ฉ green square +๐ฆ blue square +๐ช purple square +๐ซ brown square +โฌ black large square +โฌ white large square +โผ๏ธ black medium square +โป๏ธ white medium square +โพ black medium-small square +โฝ white medium-small square +โช๏ธ black small square +โซ๏ธ white small square +๐ถ large orange diamond +๐ท large blue diamond +๐ธ small orange diamond +๐น small blue diamond +๐บ red triangle pointed up +๐ป red triangle pointed down +๐ diamond with a dot +๐ radio button +๐ณ white square button +๐ฒ black square button +๐ chequered flag +๐ฉ triangular flag +๐ crossed flags +๐ด black flag +๐ณ๏ธ white flag +๐ฆ๐จ flag: Ascension Island +๐ฆ๐ฉ flag: Andorra +๐ฆ๐ช flag: United Arab Emirates +๐ฆ๐ซ flag: Afghanistan +๐ฆ๐ฌ flag: Antigua & Barbuda +๐ฆ๐ฎ flag: Anguilla +๐ฆ๐ฑ flag: Albania +๐ฆ๐ฒ flag: Armenia +๐ฆ๐ด flag: Angola +๐ฆ๐ถ flag: Antarctica +๐ฆ๐ท flag: Argentina +๐ฆ๐ธ flag: American Samoa +๐ฆ๐น flag: Austria +๐ฆ๐บ flag: Australia +๐ฆ๐ผ flag: Aruba +๐ฆ๐ฝ flag: ร
land Islands +๐ฆ๐ฟ flag: Azerbaijan +๐ง๐ฆ flag: Bosnia & Herzegovina +๐ง๐ง flag: Barbados +๐ง๐ฉ flag: Bangladesh +๐ง๐ช flag: Belgium +๐ง๐ซ flag: Burkina Faso +๐ง๐ฌ flag: Bulgaria +๐ง๐ญ flag: Bahrain +๐ง๐ฎ flag: Burundi +๐ง๐ฏ flag: Benin +๐ง๐ฑ flag: St. Barthรฉlemy +๐ง๐ฒ flag: Bermuda +๐ง๐ณ flag: Brunei +๐ง๐ด flag: Bolivia +๐ง๐ถ flag: Caribbean Netherlands +๐ง๐ท flag: Brazil +๐ง๐ธ flag: Bahamas +๐ง๐น flag: Bhutan +๐ง๐ป flag: Bouvet Island +๐ง๐ผ flag: Botswana +๐ง๐พ flag: Belarus +๐ง๐ฟ flag: Belize +๐จ๐ฆ flag: Canada +๐จ๐จ flag: Cocos (Keeling) Islands +๐จ๐ฉ flag: Congo - Kinshasa +๐จ๐ซ flag: Central African Republic +๐จ๐ฌ flag: Congo - Brazzaville +๐จ๐ญ flag: Switzerland +๐จ๐ฎ flag: Cรดte dโIvoire +๐จ๐ฐ flag: Cook Islands +๐จ๐ฑ flag: Chile +๐จ๐ฒ flag: Cameroon +๐จ๐ณ flag: China +๐จ๐ด flag: Colombia +๐จ๐ต flag: Clipperton Island +๐จ๐ท flag: Costa Rica +๐จ๐บ flag: Cuba +๐จ๐ป flag: Cape Verde +๐จ๐ผ flag: Curaรงao +๐จ๐ฝ flag: Christmas Island +๐จ๐พ flag: Cyprus +๐จ๐ฟ flag: Czechia +๐ฉ๐ช flag: Germany +๐ฉ๐ฌ flag: Diego Garcia +๐ฉ๐ฏ flag: Djibouti +๐ฉ๐ฐ flag: Denmark +๐ฉ๐ฒ flag: Dominica +๐ฉ๐ด flag: Dominican Republic +๐ฉ๐ฟ flag: Algeria +๐ช๐ฆ flag: Ceuta & Melilla +๐ช๐จ flag: Ecuador +๐ช๐ช flag: Estonia +๐ช๐ฌ flag: Egypt +๐ช๐ญ flag: Western Sahara +๐ช๐ท flag: Eritrea +๐ช๐ธ flag: Spain +๐ช๐น flag: Ethiopia +๐ช๐บ flag: European Union +๐ซ๐ฎ flag: Finland +๐ซ๐ฏ flag: Fiji +๐ซ๐ฐ flag: Falkland Islands +๐ซ๐ฒ flag: Micronesia +๐ซ๐ด flag: Faroe Islands +๐ซ๐ท flag: France +๐ฌ๐ฆ flag: Gabon +๐ฌ๐ง flag: United Kingdom +๐ฌ๐ฉ flag: Grenada +๐ฌ๐ช flag: Georgia +๐ฌ๐ซ flag: French Guiana +๐ฌ๐ฌ flag: Guernsey +๐ฌ๐ญ flag: Ghana +๐ฌ๐ฎ flag: Gibraltar +๐ฌ๐ฑ flag: Greenland +๐ฌ๐ฒ flag: Gambia +๐ฌ๐ณ flag: Guinea +๐ฌ๐ต flag: Guadeloupe +๐ฌ๐ถ flag: Equatorial Guinea +๐ฌ๐ท flag: Greece +๐ฌ๐ธ flag: South Georgia & South Sandwich Islands +๐ฌ๐น flag: Guatemala +๐ฌ๐บ flag: Guam +๐ฌ๐ผ flag: Guinea-Bissau +๐ฌ๐พ flag: Guyana +๐ญ๐ฐ flag: Hong Kong SAR China +๐ญ๐ฒ flag: Heard & McDonald Islands +๐ญ๐ณ flag: Honduras +๐ญ๐ท flag: Croatia +๐ญ๐น flag: Haiti +๐ญ๐บ flag: Hungary +๐ฎ๐จ flag: Canary Islands +๐ฎ๐ฉ flag: Indonesia +๐ฎ๐ช flag: Ireland +๐ฎ๐ฑ flag: Israel +๐ฎ๐ฒ flag: Isle of Man +๐ฎ๐ณ flag: India +๐ฎ๐ด flag: British Indian Ocean Territory +๐ฎ๐ถ flag: Iraq +๐ฎ๐ท flag: Iran +๐ฎ๐ธ flag: Iceland +๐ฎ๐น flag: Italy +๐ฏ๐ช flag: Jersey +๐ฏ๐ฒ flag: Jamaica +๐ฏ๐ด flag: Jordan +๐ฏ๐ต flag: Japan +๐ฐ๐ช flag: Kenya +๐ฐ๐ฌ flag: Kyrgyzstan +๐ฐ๐ญ flag: Cambodia +๐ฐ๐ฎ flag: Kiribati +๐ฐ๐ฒ flag: Comoros +๐ฐ๐ณ flag: St. Kitts & Nevis +๐ฐ๐ต flag: North Korea +๐ฐ๐ท flag: South Korea +๐ฐ๐ผ flag: Kuwait +๐ฐ๐พ flag: Cayman Islands +๐ฐ๐ฟ flag: Kazakhstan +๐ฑ๐ฆ flag: Laos +๐ฑ๐ง flag: Lebanon +๐ฑ๐จ flag: St. Lucia +๐ฑ๐ฎ flag: Liechtenstein +๐ฑ๐ฐ flag: Sri Lanka +๐ฑ๐ท flag: Liberia +๐ฑ๐ธ flag: Lesotho +๐ฑ๐น flag: Lithuania +๐ฑ๐บ flag: Luxembourg +๐ฑ๐ป flag: Latvia +๐ฑ๐พ flag: Libya +๐ฒ๐ฆ flag: Morocco +๐ฒ๐จ flag: Monaco +๐ฒ๐ฉ flag: Moldova +๐ฒ๐ช flag: Montenegro +๐ฒ๐ซ flag: St. Martin +๐ฒ๐ฌ flag: Madagascar +๐ฒ๐ญ flag: Marshall Islands +๐ฒ๐ฐ flag: North Macedonia +๐ฒ๐ฑ flag: Mali +๐ฒ๐ฒ flag: Myanmar (Burma) +๐ฒ๐ณ flag: Mongolia +๐ฒ๐ด flag: Macao SAR China +๐ฒ๐ต flag: Northern Mariana Islands +๐ฒ๐ถ flag: Martinique +๐ฒ๐ท flag: Mauritania +๐ฒ๐ธ flag: Montserrat +๐ฒ๐น flag: Malta +๐ฒ๐บ flag: Mauritius +๐ฒ๐ป flag: Maldives +๐ฒ๐ผ flag: Malawi +๐ฒ๐ฝ flag: Mexico +๐ฒ๐พ flag: Malaysia +๐ฒ๐ฟ flag: Mozambique +๐ณ๐ฆ flag: Namibia +๐ณ๐จ flag: New Caledonia +๐ณ๐ช flag: Niger +๐ณ๐ซ flag: Norfolk Island +๐ณ๐ฌ flag: Nigeria +๐ณ๐ฎ flag: Nicaragua +๐ณ๐ฑ flag: Netherlands +๐ณ๐ด flag: Norway +๐ณ๐ต flag: Nepal +๐ณ๐ท flag: Nauru +๐ณ๐บ flag: Niue +๐ณ๐ฟ flag: New Zealand +๐ด๐ฒ flag: Oman +๐ต๐ฆ flag: Panama +๐ต๐ช flag: Peru +๐ต๐ซ flag: French Polynesia +๐ต๐ฌ flag: Papua New Guinea +๐ต๐ญ flag: Philippines +๐ต๐ฐ flag: Pakistan +๐ต๐ฑ flag: Poland +๐ต๐ฒ flag: St. Pierre & Miquelon +๐ต๐ณ flag: Pitcairn Islands +๐ต๐ท flag: Puerto Rico +๐ต๐ธ flag: Palestinian Territories +๐ต๐น flag: Portugal +๐ต๐ผ flag: Palau +๐ต๐พ flag: Paraguay +๐ถ๐ฆ flag: Qatar +๐ท๐ช flag: Rรฉunion +๐ท๐ด flag: Romania +๐ท๐ธ flag: Serbia +๐ท๐บ flag: Russia +๐ท๐ผ flag: Rwanda +๐ธ๐ฆ flag: Saudi Arabia +๐ธ๐ง flag: Solomon Islands +๐ธ๐จ flag: Seychelles +๐ธ๐ฉ flag: Sudan +๐ธ๐ช flag: Sweden +๐ธ๐ฌ flag: Singapore +๐ธ๐ญ flag: St. Helena +๐ธ๐ฎ flag: Slovenia +๐ธ๐ฏ flag: Svalbard & Jan Mayen +๐ธ๐ฐ flag: Slovakia +๐ธ๐ฑ flag: Sierra Leone +๐ธ๐ฒ flag: San Marino +๐ธ๐ณ flag: Senegal +๐ธ๐ด flag: Somalia +๐ธ๐ท flag: Suriname +๐ธ๐ธ flag: South Sudan +๐ธ๐น flag: Sรฃo Tomรฉ & Prรญncipe +๐ธ๐ป flag: El Salvador +๐ธ๐ฝ flag: Sint Maarten +๐ธ๐พ flag: Syria +๐ธ๐ฟ flag: Eswatini +๐น๐ฆ flag: Tristan da Cunha +๐น๐จ flag: Turks & Caicos Islands +๐น๐ฉ flag: Chad +๐น๐ซ flag: French Southern Territories +๐น๐ฌ flag: Togo +๐น๐ญ flag: Thailand +๐น๐ฏ flag: Tajikistan +๐น๐ฐ flag: Tokelau +๐น๐ฑ flag: Timor-Leste +๐น๐ฒ flag: Turkmenistan +๐น๐ณ flag: Tunisia +๐น๐ด flag: Tonga +๐น๐ท flag: Turkey +๐น๐น flag: Trinidad & Tobago +๐น๐ป flag: Tuvalu +๐น๐ผ flag: Taiwan +๐น๐ฟ flag: Tanzania +๐บ๐ฆ flag: Ukraine +๐บ๐ฌ flag: Uganda +๐บ๐ฒ flag: U.S. Outlying Islands +๐บ๐ณ flag: United Nations +๐บ๐ธ flag: United States +๐บ๐พ flag: Uruguay +๐บ๐ฟ flag: Uzbekistan +๐ป๐ฆ flag: Vatican City +๐ป๐จ flag: St. Vincent & Grenadines +๐ป๐ช flag: Venezuela +๐ป๐ฌ flag: British Virgin Islands +๐ป๐ฎ flag: U.S. Virgin Islands +๐ป๐ณ flag: Vietnam +๐ป๐บ flag: Vanuatu +๐ผ๐ซ flag: Wallis & Futuna +๐ผ๐ธ flag: Samoa +๐ฝ๐ฐ flag: Kosovo +๐พ๐ช flag: Yemen +๐พ๐น flag: Mayotte +๐ฟ๐ฆ flag: South Africa +๐ฟ๐ฒ flag: Zambia +๐ฟ๐ผ flag: Zimbabwe +๐ด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ flag: England +๐ด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ flag: Scotland +๐ด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ flag: Wales diff --git a/.local/share/vocab/words.txt b/.local/share/vocab/words.txt new file mode 100644 index 0000000..fe8dd61 --- /dev/null +++ b/.local/share/vocab/words.txt @@ -0,0 +1,67 @@ +bigot -> a person with very strong beliefs or opinions +allocate -> assign +territory -> region +criteria -> fixed basis to judge +keep ones head -> not to get angry +triumph -> victory +knaves -> dishonest people +keep ones virtue -> keep ones goodness or morals under any condition +queer -> strange +exclusive -> availabe to only one person or group +fate -> a power that is believed to control what happens in the future +established -> accepted or followed by many people +compelled -> forced to do +abundant -> existing or occuring in large ammounts +bias -> a tendency to believe that some people,idias, etc are better than others useually results in treating some people unfairly +desperate -> feeling or showing a hopeless sense taht a situation is so bad as to be impossible to deal with +iteration -> the repetition of a process or utterance +cope -> deal with something difficult +revile -> critisize in an abusive or angrily insulting manner +serveillance -> close observation, especially of a suspected spy or criminal +negotiate -> obtain or bring about by discussion +caveat -> a warning or proviso of specific conditions or limitatations +punitive -> inteded as punishment +legislation -> laws, considered collectively +narcissism -> excessive interest in or admiration of onself and one's physical appearance +neoligism -> a newly coined word or expression +ideology -> a system of idias, especially one which forms the basis of economic or political theory and policy +rebuke -> to criticize sharply +bizzare -> odd, extravagant +AWOL -> absent without official leave +pursue -> follow or chase (someone or something) +apologist -> a person who offers an arguement in defence of something controversial. +stereotype -> a widely held but fixed and oversimplified image or idea of a particular type of person or thing +MIA -> missing in action +exodus -> a mass departure of people +departure -> the action of leaving, especially to start a journey +destiny -> the event that will necessarily happen to a particular person or thing in the future +torment -> severe physical or mental suffering +inferior -> lower in rank, status, or quality. +excerpt -> a short extract from a film, broadcast, or piece of music or writing +ambitious -> having or showing a strong desire and determination to succeed +innocuous -> not harmful or offensive +evacuate -> remove (someone) from a place of danger to a safer place +indulge -> allow oneself to enjoy the pleasure of +to take for granted -> to value (something or someone) too lightly +afaik -> abbreviation for "as far as i know" +fatal -> causing death +intercept -> obstruct (someone or something) so as to prevent them from continuing to a destination +pry -> inquire too closely into a person's private affairs +relent -> abondon a sever or harsh attitude, especially by finally yielding to a request +fiance -> a man to whom someone is engaged or married +credible -> able to be believed; convincing. +implode -> collapse or cause to collapse violently inwards. +shenanigans -> secret or dishonest activity +prelude -> an action or event serving as an introduction to something more important +sedative -> promoting calm or inducing sleep +induce -> succeed in persuading or loading (someone) to do something +immigrant -> a person who comes to live permanently in a foreign country. +con -> persuade (someone) to do or believe in something by lying to them. +obnoxious -> extremely unpleasant +debut -> a person's first appearance or performance in a particular capacity or role +convention -> a way in which something is usually done +deduct -> subtract or take away (an amount or part) from a total +derive -> obtain something from (a specified source) +sceptical -> not easily convinced; having doubts or reservations +psyched -> excited and full of anticipation +faucet -> a tap, "nal" in hindi |
