diff options
Diffstat (limited to 'dotfiles/.local')
23 files changed, 1668 insertions, 507 deletions
diff --git a/dotfiles/.local/bin/ddquakemite b/dotfiles/.local/bin/ddquakemite index ef67955..ae73235 100755 --- a/dotfiles/.local/bin/ddquakemite +++ b/dotfiles/.local/bin/ddquakemite @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh if ! [ -z "$(swaymsg -t get_tree | grep 'quakemite')" ]; then if [ -z "$(swaymsg -t get_tree | grep -A 42 'quakemite' | tail -n 1 | grep 'true')" ]; then @@ -7,7 +7,7 @@ if ! [ -z "$(swaymsg -t get_tree | grep 'quakemite')" ]; then swaymsg '[title="quakemite"] move scratchpad' fi else - $TERMINAL -t "quakemite" -e "$SHELL -c 'TERM=xterm-256color; TERMINAL=termite; tmux a || tmux'" & + $TERMINAL -t "quakemite" -e "$SHELL -c 'TERM=xterm-256color; TERMINAL=termite; tmux -f "$HOME/.config/tmux/tmux.conf" a || tmux -f "$HOME/.config/tmux/tmux.conf"'" & sleep 0.2s currenty=$(swaygetcurrentwindow | cut -d ' ' -f1 | cut -d ',' -f2 ) let moveup=$currenty-25 diff --git a/dotfiles/.local/bin/git-prompt b/dotfiles/.local/bin/git-prompt deleted file mode 100755 index 048d2d7..0000000 --- a/dotfiles/.local/bin/git-prompt +++ /dev/null @@ -1,484 +0,0 @@ -# bash/zsh git prompt support -# -# Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org> -# Distributed under the GNU General Public License, version 2.0. -# -# This script allows you to see repository status in your prompt. -# -# To enable: -# -# 1) Copy this file to somewhere (e.g. ~/.git-prompt.sh). -# 2) Add the following line to your .bashrc/.zshrc: -# source ~/.git-prompt.sh -# 3a) Change your PS1 to call __git_ps1 as -# command-substitution: -# Bash: PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ ' -# ZSH: setopt PROMPT_SUBST ; PS1='[%n@%m %c$(__git_ps1 " (%s)")]\$ ' -# the optional argument will be used as format string. -# 3b) Alternatively, for a slightly faster prompt, __git_ps1 can -# be used for PROMPT_COMMAND in Bash or for precmd() in Zsh -# with two parameters, <pre> and <post>, which are strings -# you would put in $PS1 before and after the status string -# generated by the git-prompt machinery. e.g. -# Bash: PROMPT_COMMAND='__git_ps1 "\u@\h:\w" "\\\$ "' -# will show username, at-sign, host, colon, cwd, then -# various status string, followed by dollar and SP, as -# your prompt. -# ZSH: precmd () { __git_ps1 "%n" ":%~$ " "|%s" } -# will show username, pipe, then various status string, -# followed by colon, cwd, dollar and SP, as your prompt. -# Optionally, you can supply a third argument with a printf -# format string to finetune the output of the branch status -# -# The repository status will be displayed only if you are currently in a -# git repository. The %s token is the placeholder for the shown status. -# -# The prompt status always includes the current branch name. -# -# In addition, if you set GIT_PS1_SHOWDIRTYSTATE to a nonempty value, -# unstaged (*) and staged (+) changes will be shown next to the branch -# name. You can configure this per-repository with the -# bash.showDirtyState variable, which defaults to true once -# GIT_PS1_SHOWDIRTYSTATE is enabled. -# -# You can also see if currently something is stashed, by setting -# GIT_PS1_SHOWSTASHSTATE to a nonempty value. If something is stashed, -# then a '$' will be shown next to the branch name. -# -# If you would like to see if there're untracked files, then you can set -# GIT_PS1_SHOWUNTRACKEDFILES to a nonempty value. If there're untracked -# files, then a '%' will be shown next to the branch name. You can -# configure this per-repository with the bash.showUntrackedFiles -# variable, which defaults to true once GIT_PS1_SHOWUNTRACKEDFILES is -# enabled. -# -# If you would like to see the difference between HEAD and its upstream, -# set GIT_PS1_SHOWUPSTREAM="auto". A "<" indicates you are behind, ">" -# indicates you are ahead, "<>" indicates you have diverged and "=" -# indicates that there is no difference. You can further control -# behaviour by setting GIT_PS1_SHOWUPSTREAM to a space-separated list -# of values: -# -# verbose show number of commits ahead/behind (+/-) upstream -# name if verbose, then also show the upstream abbrev name -# legacy don't use the '--count' option available in recent -# versions of git-rev-list -# git always compare HEAD to @{upstream} -# svn always compare HEAD to your SVN upstream -# -# By default, __git_ps1 will compare HEAD to your SVN upstream if it can -# find one, or @{upstream} otherwise. Once you have set -# GIT_PS1_SHOWUPSTREAM, you can override it on a per-repository basis by -# setting the bash.showUpstream config variable. -# -# If you would like to see more information about the identity of -# commits checked out as a detached HEAD, set GIT_PS1_DESCRIBE_STYLE -# to one of these values: -# -# contains relative to newer annotated tag (v1.6.3.2~35) -# branch relative to newer tag or branch (master~4) -# describe relative to older annotated tag (v1.6.3.1-13-gdd42c2f) -# default exactly matching tag -# -# If you would like a colored hint about the current dirty state, set -# GIT_PS1_SHOWCOLORHINTS to a nonempty value. The colors are based on -# the colored output of "git status -sb" and are available only when -# using __git_ps1 for PROMPT_COMMAND or precmd. - -# check whether printf supports -v -__git_printf_supports_v= -printf -v __git_printf_supports_v -- '%s' yes >/dev/null 2>&1 - -# stores the divergence from upstream in $p -# used by GIT_PS1_SHOWUPSTREAM -__git_ps1_show_upstream () -{ - local key value - local svn_remote svn_url_pattern count n - local upstream=git legacy="" verbose="" name="" - - svn_remote=() - # get some config options from git-config - local output="$(git config -z --get-regexp '^(svn-remote\..*\.url|bash\.showupstream)$' 2>/dev/null | tr '\0\n' '\n ')" - while read -r key value; do - case "$key" in - bash.showupstream) - GIT_PS1_SHOWUPSTREAM="$value" - if [[ -z "${GIT_PS1_SHOWUPSTREAM}" ]]; then - p="" - return - fi - ;; - svn-remote.*.url) - svn_remote[$((${#svn_remote[@]} + 1))]="$value" - svn_url_pattern="$svn_url_pattern\\|$value" - upstream=svn+git # default upstream is SVN if available, else git - ;; - esac - done <<< "$output" - - # parse configuration values - for option in ${GIT_PS1_SHOWUPSTREAM}; do - case "$option" in - git|svn) upstream="$option" ;; - verbose) verbose=1 ;; - legacy) legacy=1 ;; - name) name=1 ;; - esac - done - - # Find our upstream - case "$upstream" in - git) upstream="@{upstream}" ;; - svn*) - # get the upstream from the "git-svn-id: ..." in a commit message - # (git-svn uses essentially the same procedure internally) - local -a svn_upstream - svn_upstream=($(git log --first-parent -1 \ - --grep="^git-svn-id: \(${svn_url_pattern#??}\)" 2>/dev/null)) - if [[ 0 -ne ${#svn_upstream[@]} ]]; then - svn_upstream=${svn_upstream[${#svn_upstream[@]} - 2]} - svn_upstream=${svn_upstream%@*} - local n_stop="${#svn_remote[@]}" - for ((n=1; n <= n_stop; n++)); do - svn_upstream=${svn_upstream#${svn_remote[$n]}} - done - - if [[ -z "$svn_upstream" ]]; then - # default branch name for checkouts with no layout: - upstream=${GIT_SVN_ID:-git-svn} - else - upstream=${svn_upstream#/} - fi - elif [[ "svn+git" = "$upstream" ]]; then - upstream="@{upstream}" - fi - ;; - esac - - # Find how many commits we are ahead/behind our upstream - if [[ -z "$legacy" ]]; then - count="$(git rev-list --count --left-right \ - "$upstream"...HEAD 2>/dev/null)" - else - # produce equivalent output to --count for older versions of git - local commits - if commits="$(git rev-list --left-right "$upstream"...HEAD 2>/dev/null)" - then - local commit behind=0 ahead=0 - for commit in $commits - do - case "$commit" in - "<"*) ((behind++)) ;; - *) ((ahead++)) ;; - esac - done - count="$behind $ahead" - else - count="" - fi - fi - - # calculate the result - if [[ -z "$verbose" ]]; then - case "$count" in - "") # no upstream - p="" ;; - "0 0") # equal to upstream - p="=" ;; - "0 "*) # ahead of upstream - p=">" ;; - *" 0") # behind upstream - p="<" ;; - *) # diverged from upstream - p="<>" ;; - esac - else - case "$count" in - "") # no upstream - p="" ;; - "0 0") # equal to upstream - p=" u=" ;; - "0 "*) # ahead of upstream - p=" u+${count#0 }" ;; - *" 0") # behind upstream - p=" u-${count% 0}" ;; - *) # diverged from upstream - p=" u+${count#* }-${count% *}" ;; - esac - if [[ -n "$count" && -n "$name" ]]; then - __git_ps1_upstream_name=$(git rev-parse \ - --abbrev-ref "$upstream" 2>/dev/null) - if [ $pcmode = yes ]; then - # see the comments around the - # __git_ps1_branch_name variable below - p="$p \${__git_ps1_upstream_name}" - else - p="$p ${__git_ps1_upstream_name}" - # not needed anymore; keep user's - # environment clean - unset __git_ps1_upstream_name - fi - fi - fi - -} - -# Helper function that is meant to be called from __git_ps1. It -# injects color codes into the appropriate gitstring variables used -# to build a gitstring. -__git_ps1_colorize_gitstring () -{ - if [[ -n ${ZSH_VERSION-} ]]; then - local c_red='%F{red}' - local c_green='%F{green}' - local c_lblue='%F{blue}' - local c_clear='%f' - else - # Using \[ and \] around colors is necessary to prevent - # issues with command line editing/browsing/completion! - local c_red='\[\e[31m\]' - local c_green='\[\e[32m\]' - local c_lblue='\[\e[1;34m\]' - local c_clear='\[\e[0m\]' - fi - local bad_color=$c_red - local ok_color=$c_green - local flags_color="$c_lblue" - - local branch_color="" - if [ $detached = no ]; then - branch_color="$ok_color" - else - branch_color="$bad_color" - fi - c="$branch_color$c" - - z="$c_clear$z" - if [ "$w" = "*" ]; then - w="$bad_color$w" - fi - if [ -n "$i" ]; then - i="$ok_color$i" - fi - if [ -n "$s" ]; then - s="$flags_color$s" - fi - if [ -n "$u" ]; then - u="$bad_color$u" - fi - r="$c_clear$r" -} - -# __git_ps1 accepts 0 or 1 arguments (i.e., format string) -# when called from PS1 using command substitution -# in this mode it prints text to add to bash PS1 prompt (includes branch name) -# -# __git_ps1 requires 2 or 3 arguments when called from PROMPT_COMMAND (pc) -# in that case it _sets_ PS1. The arguments are parts of a PS1 string. -# when two arguments are given, the first is prepended and the second appended -# to the state string when assigned to PS1. -# The optional third parameter will be used as printf format string to further -# customize the output of the git-status string. -# In this mode you can request colored hints using GIT_PS1_SHOWCOLORHINTS=true -__git_ps1 () -{ - local pcmode=no - local detached=no - local ps1pc_start='\u@\h:\w ' - local ps1pc_end='\$ ' - local printf_format=' %s ' - - case "$#" in - 2|3) pcmode=yes - ps1pc_start="$1" - ps1pc_end="$2" - printf_format="${3:-$printf_format}" - ;; - 0|1) printf_format="${1:-$printf_format}" - ;; - *) return - ;; - esac - - local repo_info rev_parse_exit_code - repo_info="$(git rev-parse --git-dir --is-inside-git-dir \ - --is-bare-repository --is-inside-work-tree \ - --short HEAD 2>/dev/null)" - rev_parse_exit_code="$?" - - if [ -z "$repo_info" ]; then - if [ $pcmode = yes ]; then - #In PC mode PS1 always needs to be set - PS1="$ps1pc_start$ps1pc_end" - fi - return - fi - - local short_sha - if [ "$rev_parse_exit_code" = "0" ]; then - short_sha="${repo_info##*$'\n'}" - repo_info="${repo_info%$'\n'*}" - fi - local inside_worktree="${repo_info##*$'\n'}" - repo_info="${repo_info%$'\n'*}" - local bare_repo="${repo_info##*$'\n'}" - repo_info="${repo_info%$'\n'*}" - local inside_gitdir="${repo_info##*$'\n'}" - local g="${repo_info%$'\n'*}" - - local r="" - local b="" - local step="" - local total="" - if [ -d "$g/rebase-merge" ]; then - read b 2>/dev/null <"$g/rebase-merge/head-name" - read step 2>/dev/null <"$g/rebase-merge/msgnum" - read total 2>/dev/null <"$g/rebase-merge/end" - if [ -f "$g/rebase-merge/interactive" ]; then - r="|REBASE-i" - else - r="|REBASE-m" - fi - else - if [ -d "$g/rebase-apply" ]; then - read step 2>/dev/null <"$g/rebase-apply/next" - read total 2>/dev/null <"$g/rebase-apply/last" - if [ -f "$g/rebase-apply/rebasing" ]; then - read b 2>/dev/null <"$g/rebase-apply/head-name" - r="|REBASE" - elif [ -f "$g/rebase-apply/applying" ]; then - r="|AM" - else - r="|AM/REBASE" - fi - elif [ -f "$g/MERGE_HEAD" ]; then - r="|MERGING" - elif [ -f "$g/CHERRY_PICK_HEAD" ]; then - r="|CHERRY-PICKING" - elif [ -f "$g/REVERT_HEAD" ]; then - r="|REVERTING" - elif [ -f "$g/BISECT_LOG" ]; then - r="|BISECTING" - fi - - if [ -n "$b" ]; then - : - elif [ -h "$g/HEAD" ]; then - # symlink symbolic ref - b="$(git symbolic-ref HEAD 2>/dev/null)" - else - local head="" - if ! read head 2>/dev/null <"$g/HEAD"; then - if [ $pcmode = yes ]; then - PS1="$ps1pc_start$ps1pc_end" - fi - return - fi - # is it a symbolic ref? - b="${head#ref: }" - if [ "$head" = "$b" ]; then - detached=yes - b="$( - case "${GIT_PS1_DESCRIBE_STYLE-}" in - (contains) - git describe --contains HEAD ;; - (branch) - git describe --contains --all HEAD ;; - (describe) - git describe HEAD ;; - (* | default) - git describe --tags --exact-match HEAD ;; - esac 2>/dev/null)" || - - b="$short_sha..." - b="($b)" - fi - fi - fi - - if [ -n "$step" ] && [ -n "$total" ]; then - r="$r $step/$total" - fi - - local w="" - local i="" - local s="" - local u="" - local c="" - local p="" - - if [ "true" = "$inside_gitdir" ]; then - if [ "true" = "$bare_repo" ]; then - c="BARE:" - else - b="GIT_DIR!" - fi - elif [ "true" = "$inside_worktree" ]; then - if [ -n "${GIT_PS1_SHOWDIRTYSTATE-}" ] && - [ "$(git config --bool bash.showDirtyState)" != "false" ] - then - git diff --no-ext-diff --quiet --exit-code || w="*" - if [ -n "$short_sha" ]; then - git diff-index --cached --quiet HEAD -- || i="+" - else - i="#" - fi - fi - if [ -n "${GIT_PS1_SHOWSTASHSTATE-}" ] && - [ -r "$g/refs/stash" ]; then - s="$" - fi - - if [ -n "${GIT_PS1_SHOWUNTRACKEDFILES-}" ] && - [ "$(git config --bool bash.showUntrackedFiles)" != "false" ] && - git ls-files --others --exclude-standard --error-unmatch -- '*' >/dev/null 2>/dev/null - then - u="%${ZSH_VERSION+%}" - fi - - if [ -n "${GIT_PS1_SHOWUPSTREAM-}" ]; then - __git_ps1_show_upstream - fi - fi - - local z="${GIT_PS1_STATESEPARATOR-" "}" - - # NO color option unless in PROMPT_COMMAND mode - if [ $pcmode = yes ] && [ -n "${GIT_PS1_SHOWCOLORHINTS-}" ]; then - __git_ps1_colorize_gitstring - fi - - b=${b##refs/heads/} - if [ $pcmode = yes ]; then - # In pcmode (and only pcmode) the contents of - # $gitstring are subject to expansion by the shell. - # Avoid putting the raw ref name in the prompt to - # protect the user from arbitrary code execution via - # specially crafted ref names (e.g., a ref named - # '$(IFS=_;cmd=sudo_rm_-rf_/;$cmd)' would execute - # 'sudo rm -rf /' when the prompt is drawn). Instead, - # put the ref name in a new global variable (in the - # __git_ps1_* namespace to avoid colliding with the - # user's environment) and reference that variable from - # PS1. - __git_ps1_branch_name=$b - # note that the $ is escaped -- the variable will be - # expanded later (when it's time to draw the prompt) - b="\${__git_ps1_branch_name}" - fi - - local f="$w$i$s$u" - local gitstring="$c$b${f:+$z$f}$r$p" - - if [ $pcmode = yes ]; then - if [ "${__git_printf_supports_v-}" != yes ]; then - gitstring=$(printf -- "$printf_format" "$gitstring") - else - printf -v gitstring -- "$printf_format" "$gitstring" - fi - PS1="$ps1pc_start$gitstring$ps1pc_end" - else - printf -- "$printf_format" "$gitstring" - fi -} diff --git a/dotfiles/.local/bin/mailcheck b/dotfiles/.local/bin/mailcheck index bf49de9..32f76a9 100755 --- a/dotfiles/.local/bin/mailcheck +++ b/dotfiles/.local/bin/mailcheck @@ -12,7 +12,7 @@ export DISPLAY=:0.0 notify() { notify-send "๐ฌ Email" "$2 new mail(s) in \`$1\` account." - mplayer $HOME/.soundalerts/mail.mp3 + mplayer $HOME/.local/share/soundalerts/mail.mp3 } # Run mbsync. You can feed this script different settings. diff --git a/dotfiles/.local/bin/mako_launch b/dotfiles/.local/bin/mako_launch deleted file mode 100755 index 4b61208..0000000 --- a/dotfiles/.local/bin/mako_launch +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -# Terminate already running mako instance -killall -q mako - -# Wait until the processes have been shut down -while pgrep -u $UID -x mako >/dev/null; do sleep 1; done - -mako --background-color "#2d333ff3" --border-color "#434c5e" --text-color "#e5e9f0" --font="BlexMono Nerd Font Mono 10" --default-timeout 5000 --height 300 diff --git a/dotfiles/.local/bin/menublk b/dotfiles/.local/bin/menublk index 0ca0607..26cfc55 100755 --- a/dotfiles/.local/bin/menublk +++ b/dotfiles/.local/bin/menublk @@ -6,7 +6,7 @@ # Yaroslav de la Peรฑa Smirnov -. $HOME/.bemenurc +. ~/.config/bemenurc readarray -t blkdevs <<< "$(lsblk -r -o NAME,TYPE,FSTYPE,MOUNTPOINT | tail -n +2)" diff --git a/dotfiles/.local/bin/menudisplay b/dotfiles/.local/bin/menudisplay index 6064bff..1dd3c2f 100755 --- a/dotfiles/.local/bin/menudisplay +++ b/dotfiles/.local/bin/menudisplay @@ -1,7 +1,7 @@ #!/bin/sh # Source settings from .bemenurc -. $HOME/.bemenurc +. ~/.config/bemenurc display=$(swaymsg -t get_outputs | grep -E "name" | sed "s/^.*\"name\": \"//g;s/\",$//g;" | bemenu -p "Select output: " --tf="$BEMENU_TF" --tb="$BEMENU_NB" --fb="$BEMENU_NB" --fn="$BEMENU_FN" --nb="$BEMENU_NB" --nf="$BEMENU_NF" --hf="$BEMENU_HF" --hb="$BEMENU_HB") diff --git a/dotfiles/.local/bin/menuducksearch b/dotfiles/.local/bin/menuducksearch index 979c365..54242b1 100755 --- a/dotfiles/.local/bin/menuducksearch +++ b/dotfiles/.local/bin/menuducksearch @@ -5,7 +5,7 @@ # Anything else, it search it. # Source settings from .bemenurc -. $HOME/.bemenurc +. ~/.config/bemenurc choice=$(echo "๎" | bemenu -i -p "Search DuckDuckGo:" --tf="$BEMENU_TF" --tb="$BEMENU_NB" --fb="$BEMENU_NB" --fn="$BEMENU_FN" --nb="$BEMENU_NB" --nf="$BEMENU_NF" --hf="$BEMENU_HF" --hb="$BEMENU_HB") || exit 1 diff --git a/dotfiles/.local/bin/menuemoji b/dotfiles/.local/bin/menuemoji index 8f0720c..bd13aa4 100755 --- a/dotfiles/.local/bin/menuemoji +++ b/dotfiles/.local/bin/menuemoji @@ -3,9 +3,9 @@ # Shows the selected character in dunst if running. # Source settings from .bemenurc -. $HOME/.bemenurc +. ~/.config/bemenurc -chosen=$(grep -v "#" ~/.emoji | bemenu -i -l 25 --tf="$BEMENU_TF" --tb="$BEMENU_NB" --fb="$BEMENU_NB" --fn="$BEMENU_FN" --nb="$BEMENU_NB" --nf="$BEMENU_NF" --hf="$BEMENU_HF" --hb="$BEMENU_HB") +chosen=$(grep -v "#" ~/.local/share/script-data/emoji | bemenu -i -l 25 --tf="$BEMENU_TF" --tb="$BEMENU_NB" --fb="$BEMENU_NB" --fn="$BEMENU_FN" --nb="$BEMENU_NB" --nf="$BEMENU_NF" --hf="$BEMENU_HF" --hb="$BEMENU_HB") if [ -z $chosen ]; then exit 0 diff --git a/dotfiles/.local/bin/menugrim b/dotfiles/.local/bin/menugrim index bc77c11..523e162 100755 --- a/dotfiles/.local/bin/menugrim +++ b/dotfiles/.local/bin/menugrim @@ -5,7 +5,7 @@ if ! [ -d $SCROT_DIR ]; then fi # Source settings from .bemenurc -. $HOME/.bemenurc +. ~/.config/bemenurc notify_saved() { notify-send "screenshot has been saved in $SCROT_DIR" ; diff --git a/dotfiles/.local/bin/menumako b/dotfiles/.local/bin/menumako index 6589c32..ce7e82e 100755 --- a/dotfiles/.local/bin/menumako +++ b/dotfiles/.local/bin/menumako @@ -1,6 +1,6 @@ #!/bin/sh # Source settings from .bemenurc -. $HOME/.bemenurc +. ~/.config/bemenurc makoctl menu bemenu '-p "What to do?" --tf="$BEMENU_TF" --tb="$BEMENU_NB" --fb="$BEMENU_NB" --fn="$BEMENU_FN" --nb="$BEMENU_NB" --nf="$BEMENU_NF" --hf="$BEMENU_HF" --hb="$BEMENU_HB"' diff --git a/dotfiles/.local/bin/menuoutput b/dotfiles/.local/bin/menuoutput index 5e29f66..0efc948 100755 --- a/dotfiles/.local/bin/menuoutput +++ b/dotfiles/.local/bin/menuoutput @@ -2,7 +2,7 @@ # Change audio output for all streams and set as default using dmenu # Source settings from .bemenurc -. $HOME/.bemenurc +. ~/.config/bemenurc output=$(listsinks | bemenu -p "Select audio output: " --tf="$BEMENU_TF" --tb="$BEMENU_NB" --fb="$BEMENU_NB" --fn="$BEMENU_FN" --nb="$BEMENU_NB" --nf="$BEMENU_NF" --hf="$BEMENU_HF" --hb="$BEMENU_HB") diff --git a/dotfiles/.local/bin/menurun b/dotfiles/.local/bin/menurun index 530cac7..7ee05d7 100755 --- a/dotfiles/.local/bin/menurun +++ b/dotfiles/.local/bin/menurun @@ -1,7 +1,7 @@ #!/bin/sh # Source settings from .bemenurc -. $HOME/.bemenurc +. ~/.config/bemenurc action=$(compgen -c | sort -u | bemenu -p "Run:" --tf="$BEMENU_TF" --tb="$BEMENU_NB" --fb="$BEMENU_NB" --fn="$BEMENU_FN" --nb="$BEMENU_NB" --nf="$BEMENU_NF" --hf="$BEMENU_HF" --hb="$BEMENU_HB") $action diff --git a/dotfiles/.local/bin/menusession b/dotfiles/.local/bin/menusession index 3867b73..85824f7 100755 --- a/dotfiles/.local/bin/menusession +++ b/dotfiles/.local/bin/menusession @@ -1,7 +1,7 @@ #!/bin/sh # Source settings from .bemenurc -. $HOME/.bemenurc +. ~/.config/bemenurc action=$(printf "logout\nsuspend\nreboot\npoweroff\n" | bemenu -p "What to do?" --tf="$BEMENU_TF" --tb="$BEMENU_NB" --fb="$BEMENU_NB" --fn="$BEMENU_FN" --nb="$BEMENU_NB" --nf="$BEMENU_NF" --hf="$BEMENU_HF" --hb="$BEMENU_HB") diff --git a/dotfiles/.local/bin/menuxrun b/dotfiles/.local/bin/menuxrun index 7ce556e..fd7f797 100755 --- a/dotfiles/.local/bin/menuxrun +++ b/dotfiles/.local/bin/menuxrun @@ -1,7 +1,7 @@ #!/bin/sh # Source settings from .bemenurc -. $HOME/.bemenurc +. ~/.config/bemenurc action=$(compgen -c | sort -u | bemenu -p "Force run inside XWayland:" --tf="$BEMENU_TF" --tb="$BEMENU_NB" --fb="$BEMENU_NB" --fn="$BEMENU_FN" --nb="$BEMENU_NB" --nf="$BEMENU_NF" --hf="$BEMENU_HF" --hb="$BEMENU_HB") xway $action diff --git a/dotfiles/.local/bin/svgtopdf b/dotfiles/.local/bin/svgtopdf new file mode 100755 index 0000000..f59bd98 --- /dev/null +++ b/dotfiles/.local/bin/svgtopdf @@ -0,0 +1,9 @@ +#!/bin/sh + +file=$(readlink -f "$1") +dir=$(dirname "$file") +base="${file%.*}" + +cd "$dir" || exit + +inkscape -z -D --file="$file" --export-pdf="$base.pdf" diff --git a/dotfiles/.local/share/fonts/Kindly Rewind.ttf b/dotfiles/.local/share/fonts/Kindly Rewind.ttf Binary files differnew file mode 100644 index 0000000..97839d5 --- /dev/null +++ b/dotfiles/.local/share/fonts/Kindly Rewind.ttf diff --git a/dotfiles/.local/share/fonts/PxPlus_IBM_CGAthin.ttf b/dotfiles/.local/share/fonts/PxPlus_IBM_CGAthin.ttf Binary files differnew file mode 100644 index 0000000..bca6a64 --- /dev/null +++ b/dotfiles/.local/share/fonts/PxPlus_IBM_CGAthin.ttf diff --git a/dotfiles/.local/share/fonts/Rye-Regular.ttf b/dotfiles/.local/share/fonts/Rye-Regular.ttf Binary files differnew file mode 100644 index 0000000..4a712f5 --- /dev/null +++ b/dotfiles/.local/share/fonts/Rye-Regular.ttf diff --git a/dotfiles/.local/share/fonts/Sancreek-Regular.ttf b/dotfiles/.local/share/fonts/Sancreek-Regular.ttf Binary files differnew file mode 100644 index 0000000..46cec54 --- /dev/null +++ b/dotfiles/.local/share/fonts/Sancreek-Regular.ttf diff --git a/dotfiles/.local/share/fonts/vcr_osd_mono.ttf b/dotfiles/.local/share/fonts/vcr_osd_mono.ttf Binary files differnew file mode 100644 index 0000000..dcca687 --- /dev/null +++ b/dotfiles/.local/share/fonts/vcr_osd_mono.ttf diff --git a/dotfiles/.local/share/script-data/emoji b/dotfiles/.local/share/script-data/emoji new file mode 100644 index 0000000..dae4e8a --- /dev/null +++ b/dotfiles/.local/share/script-data/emoji @@ -0,0 +1,1645 @@ +๐ grinning face; U+1F600 +๐ grinning face with big eyes; U+1F603 +๐ grinning face with smiling eyes; U+1F604 +๐ beaming face with smiling eyes; U+1F601 +๐ grinning squinting face; U+1F606 +๐
grinning face with sweat; U+1F605 +๐คฃ rolling on the floor laughing; U+1F923 +๐ face with tears of joy; U+1F602 +๐ slightly smiling face; U+1F642 +๐ upside-down face; U+1F643 +๐ winking face; U+1F609 +๐ smiling face with smiling eyes; U+1F60A +๐ smiling face with halo; U+1F607 +๐ฅฐ smiling face with 3 hearts; U+1F970 +๐ smiling face with heart-eyes; U+1F60D +๐คฉ star-struck; U+1F929 +๐ face blowing a kiss; U+1F618 +๐ kissing face; U+1F617 +โบ smiling face; U+263A +๐ kissing face with closed eyes; U+1F61A +๐ kissing face with smiling eyes; U+1F619 +๐ face savoring food; U+1F60B +๐ face with tongue; U+1F61B +๐ winking face with tongue; U+1F61C +๐คช zany face; U+1F92A +๐ squinting face with tongue; U+1F61D +๐ค money-mouth face; U+1F911 +๐ค hugging face; U+1F917 +๐คญ face with hand over mouth; U+1F92D +๐คซ shushing face; U+1F92B +๐ค thinking face; U+1F914 +๐ค zipper-mouth face; U+1F910 +๐คจ face with raised eyebrow; U+1F928 +๐ neutral face; U+1F610 +๐ expressionless face; U+1F611 +๐ถ face without mouth; U+1F636 +๐ smirking face; U+1F60F +๐ unamused face; U+1F612 +๐ face with rolling eyes; U+1F644 +๐ฌ grimacing face; U+1F62C +๐คฅ lying face; U+1F925 +๐ relieved face; U+1F60C +๐ pensive face; U+1F614 +๐ช sleepy face; U+1F62A +๐คค drooling face; U+1F924 +๐ด sleeping face; U+1F634 +๐ท face with medical mask; U+1F637 +๐ค face with thermometer; U+1F912 +๐ค face with head-bandage; U+1F915 +๐คข nauseated face; U+1F922 +๐คฎ face vomiting; U+1F92E +๐คง sneezing face; U+1F927 +๐ฅต hot face; U+1F975 +๐ฅถ cold face; U+1F976 +๐ฅด woozy face; U+1F974 +๐ต dizzy face; U+1F635 +๐คฏ exploding head; U+1F92F +๐ค cowboy hat face; U+1F920 +๐ฅณ partying face; U+1F973 +๐ smiling face with sunglasses; U+1F60E +๐ค nerd face; U+1F913 +๐ง face with monocle; U+1F9D0 +๐ confused face; U+1F615 +๐ worried face; U+1F61F +๐ slightly frowning face; U+1F641 +โน frowning face; U+2639 +๐ฎ face with open mouth; U+1F62E +๐ฏ hushed face; U+1F62F +๐ฒ astonished face; U+1F632 +๐ณ flushed face; U+1F633 +๐ฅบ pleading face; U+1F97A +๐ฆ frowning face with open mouth; U+1F626 +๐ง anguished face; U+1F627 +๐จ fearful face; U+1F628 +๐ฐ anxious face with sweat; U+1F630 +๐ฅ sad but relieved face; U+1F625 +๐ข crying face; U+1F622 +๐ญ loudly crying face; U+1F62D +๐ฑ face screaming in fear; U+1F631 +๐ confounded face; U+1F616 +๐ฃ persevering face; U+1F623 +๐ disappointed face; U+1F61E +๐ downcast face with sweat; U+1F613 +๐ฉ weary face; U+1F629 +๐ซ tired face; U+1F62B +๐ค face with steam from nose; U+1F624 +๐ก pouting face; U+1F621 +๐ angry face; U+1F620 +๐คฌ face with symbols on mouth; U+1F92C +๐ smiling face with horns; U+1F608 +๐ฟ angry face with horns; U+1F47F +๐ skull; U+1F480 +โ skull and crossbones; U+2620 +๐ฉ pile of poo; U+1F4A9 +๐คก clown face; U+1F921 +๐น ogre; U+1F479 +๐บ goblin; U+1F47A +๐ป ghost; U+1F47B +๐ฝ alien; U+1F47D +๐พ alien monster; U+1F47E +๐ค robot face; U+1F916 +๐บ grinning cat face; U+1F63A +๐ธ grinning cat face with smiling eyes; U+1F638 +๐น cat face with tears of joy; U+1F639 +๐ป smiling cat face with heart-eyes; U+1F63B +๐ผ cat face with wry smile; U+1F63C +๐ฝ kissing cat face; U+1F63D +๐ weary cat face; U+1F640 +๐ฟ crying cat face; U+1F63F +๐พ pouting cat face; U+1F63E +๐ see-no-evil monkey; U+1F648 +๐ hear-no-evil monkey; U+1F649 +๐ speak-no-evil monkey; U+1F64A +๐ kiss mark; U+1F48B +๐ love letter; U+1F48C +๐ heart with arrow; U+1F498 +๐ heart with ribbon; U+1F49D +๐ sparkling heart; U+1F496 +๐ growing heart; U+1F497 +๐ beating heart; U+1F493 +๐ revolving hearts; U+1F49E +๐ two hearts; U+1F495 +๐ heart decoration; U+1F49F +โฃ heavy heart exclamation; U+2763 +๐ broken heart; U+1F494 +โค red heart; U+2764 +๐งก orange heart; U+1F9E1 +๐ yellow heart; U+1F49B +๐ green heart; U+1F49A +๐ blue heart; U+1F499 +๐ purple heart; U+1F49C +๐ค black heart; U+1F5A4 +๐ฏ hundred points; U+1F4AF +๐ข anger symbol; U+1F4A2 +๐ฅ collision; U+1F4A5 +๐ซ dizzy; U+1F4AB +๐ฆ sweat droplets; U+1F4A6 +๐จ dashing away; U+1F4A8 +๐ณ hole; U+1F573 +๐ฃ bomb; U+1F4A3 +๐ฌ speech balloon; U+1F4AC +๐๏ธโ๐จ๏ธ eye in speech bubble; U+1F441 U+FE0F U+200D U+1F5E8 U+FE0F +๐จ left speech bubble; U+1F5E8 +๐ฏ right anger bubble; U+1F5EF +๐ญ thought balloon; U+1F4AD +๐ค zzz; U+1F4A4 +๐ waving hand; U+1F44B +๐ค raised back of hand; U+1F91A +๐ hand with fingers splayed; U+1F590 +โ raised hand; U+270B +๐ vulcan salute; U+1F596 +๐ OK hand; U+1F44C +โ victory hand; U+270C +๐ค crossed fingers; U+1F91E +๐ค love-you gesture; U+1F91F +๐ค sign of the horns; U+1F918 +๐ค call me hand; U+1F919 +๐ backhand index pointing left; U+1F448 +๐ backhand index pointing right; U+1F449 +๐ backhand index pointing up; U+1F446 +๐ middle finger; U+1F595 +๐ backhand index pointing down; U+1F447 +โ index pointing up; U+261D +๐ thumbs up; U+1F44D +๐ thumbs down; U+1F44E +โ raised fist; U+270A +๐ oncoming fist; U+1F44A +๐ค left-facing fist; U+1F91B +๐ค right-facing fist; U+1F91C +๐ clapping hands; U+1F44F +๐ raising hands; U+1F64C +๐ open hands; U+1F450 +๐คฒ palms up together; U+1F932 +๐ค handshake; U+1F91D +๐ folded hands; U+1F64F +โ writing hand; U+270D +๐
nail polish; U+1F485 +๐คณ selfie; U+1F933 +๐ช flexed biceps; U+1F4AA +๐ฆต leg; U+1F9B5 +๐ฆถ foot; U+1F9B6 +๐ ear; U+1F442 +๐ nose; U+1F443 +๐ง brain; U+1F9E0 +๐ฆท tooth; U+1F9B7 +๐ฆด bone; U+1F9B4 +๐ eyes; U+1F440 +๐ eye; U+1F441 +๐
tongue; U+1F445 +๐ mouth; U+1F444 +๐ถ baby; U+1F476 +๐ง child; U+1F9D2 +๐ฆ boy; U+1F466 +๐ง girl; U+1F467 +๐ง person; U+1F9D1 +๐ฑ person: blond hair; U+1F471 +๐จ man; U+1F468 +๐ฑโโ๏ธ man: blond hair; U+1F471 U+200D U+2642 U+FE0F +๐จโ๐ฆฐ man: red hair; U+1F468 U+200D U+1F9B0 +๐จโ๐ฆฑ man: curly hair; U+1F468 U+200D U+1F9B1 +๐จโ๐ฆณ man: white hair; U+1F468 U+200D U+1F9B3 +๐จโ๐ฆฒ man: bald; U+1F468 U+200D U+1F9B2 +๐ง man: beard; U+1F9D4 +๐ฉ woman; U+1F469 +๐ฑโโ๏ธ woman: blond hair; U+1F471 U+200D U+2640 U+FE0F +๐ฉโ๐ฆฐ woman: red hair; U+1F469 U+200D U+1F9B0 +๐ฉโ๐ฆฑ woman: curly hair; U+1F469 U+200D U+1F9B1 +๐ฉโ๐ฆณ woman: white hair; U+1F469 U+200D U+1F9B3 +๐ฉโ๐ฆฒ woman: bald; U+1F469 U+200D U+1F9B2 +๐ง older person; U+1F9D3 +๐ด old man; U+1F474 +๐ต old woman; U+1F475 +๐ person frowning; U+1F64D +๐โโ๏ธ man frowning; U+1F64D U+200D U+2642 U+FE0F +๐โโ๏ธ woman frowning; U+1F64D U+200D U+2640 U+FE0F +๐ person pouting; U+1F64E +๐โโ๏ธ man pouting; U+1F64E U+200D U+2642 U+FE0F +๐โโ๏ธ woman pouting; U+1F64E U+200D U+2640 U+FE0F +๐
person gesturing NO; U+1F645 +๐
โโ๏ธ man gesturing NO; U+1F645 U+200D U+2642 U+FE0F +๐
โโ๏ธ woman gesturing NO; U+1F645 U+200D U+2640 U+FE0F +๐ person gesturing OK; U+1F646 +๐โโ๏ธ man gesturing OK; U+1F646 U+200D U+2642 U+FE0F +๐โโ๏ธ woman gesturing OK; U+1F646 U+200D U+2640 U+FE0F +๐ person tipping hand; U+1F481 +๐โโ๏ธ man tipping hand; U+1F481 U+200D U+2642 U+FE0F +๐โโ๏ธ woman tipping hand; U+1F481 U+200D U+2640 U+FE0F +๐ person raising hand; U+1F64B +๐โโ๏ธ man raising hand; U+1F64B U+200D U+2642 U+FE0F +๐โโ๏ธ woman raising hand; U+1F64B U+200D U+2640 U+FE0F +๐ person bowing; U+1F647 +๐โโ๏ธ man bowing; U+1F647 U+200D U+2642 U+FE0F +๐โโ๏ธ woman bowing; U+1F647 U+200D U+2640 U+FE0F +๐คฆ person facepalming; U+1F926 +๐คฆโโ๏ธ man facepalming; U+1F926 U+200D U+2642 U+FE0F +๐คฆโโ๏ธ woman facepalming; U+1F926 U+200D U+2640 U+FE0F +๐คท person shrugging; U+1F937 +๐คทโโ๏ธ man shrugging; U+1F937 U+200D U+2642 U+FE0F +๐คทโโ๏ธ woman shrugging; U+1F937 U+200D U+2640 U+FE0F +๐จโโ๏ธ man health worker; U+1F468 U+200D U+2695 U+FE0F +๐ฉโโ๏ธ woman health worker; U+1F469 U+200D U+2695 U+FE0F +๐จโ๐ man student; U+1F468 U+200D U+1F393 +๐ฉโ๐ woman student; U+1F469 U+200D U+1F393 +๐จโ๐ซ man teacher; U+1F468 U+200D U+1F3EB +๐ฉโ๐ซ woman teacher; U+1F469 U+200D U+1F3EB +๐จโโ๏ธ man judge; U+1F468 U+200D U+2696 U+FE0F +๐ฉโโ๏ธ woman judge; U+1F469 U+200D U+2696 U+FE0F +๐จโ๐พ man farmer; U+1F468 U+200D U+1F33E +๐ฉโ๐พ woman farmer; U+1F469 U+200D U+1F33E +๐จโ๐ณ man cook; U+1F468 U+200D U+1F373 +๐ฉโ๐ณ woman cook; U+1F469 U+200D U+1F373 +๐จโ๐ง man mechanic; U+1F468 U+200D U+1F527 +๐ฉโ๐ง woman mechanic; U+1F469 U+200D U+1F527 +๐จโ๐ญ man factory worker; U+1F468 U+200D U+1F3ED +๐ฉโ๐ญ woman factory worker; U+1F469 U+200D U+1F3ED +๐จโ๐ผ man office worker; U+1F468 U+200D U+1F4BC +๐ฉโ๐ผ woman office worker; U+1F469 U+200D U+1F4BC +๐จโ๐ฌ man scientist; U+1F468 U+200D U+1F52C +๐ฉโ๐ฌ woman scientist; U+1F469 U+200D U+1F52C +๐จโ๐ป man technologist; U+1F468 U+200D U+1F4BB +๐ฉโ๐ป woman technologist; U+1F469 U+200D U+1F4BB +๐จโ๐ค man singer; U+1F468 U+200D U+1F3A4 +๐ฉโ๐ค woman singer; U+1F469 U+200D U+1F3A4 +๐จโ๐จ man artist; U+1F468 U+200D U+1F3A8 +๐ฉโ๐จ woman artist; U+1F469 U+200D U+1F3A8 +๐จโโ๏ธ man pilot; U+1F468 U+200D U+2708 U+FE0F +๐ฉโโ๏ธ woman pilot; U+1F469 U+200D U+2708 U+FE0F +๐จโ๐ man astronaut; U+1F468 U+200D U+1F680 +๐ฉโ๐ woman astronaut; U+1F469 U+200D U+1F680 +๐จโ๐ man firefighter; U+1F468 U+200D U+1F692 +๐ฉโ๐ woman firefighter; U+1F469 U+200D U+1F692 +๐ฎ police officer; U+1F46E +๐ฎโโ๏ธ man police officer; U+1F46E U+200D U+2642 U+FE0F +๐ฎโโ๏ธ woman police officer; U+1F46E U+200D U+2640 U+FE0F +๐ต detective; U+1F575 +๐ต๏ธโโ๏ธ man detective; U+1F575 U+FE0F U+200D U+2642 U+FE0F +๐ต๏ธโโ๏ธ woman detective; U+1F575 U+FE0F U+200D U+2640 U+FE0F +๐ guard; U+1F482 +๐โโ๏ธ man guard; U+1F482 U+200D U+2642 U+FE0F +๐โโ๏ธ woman guard; U+1F482 U+200D U+2640 U+FE0F +๐ท construction worker; U+1F477 +๐ทโโ๏ธ man construction worker; U+1F477 U+200D U+2642 U+FE0F +๐ทโโ๏ธ woman construction worker; U+1F477 U+200D U+2640 U+FE0F +๐คด prince; U+1F934 +๐ธ princess; U+1F478 +๐ณ person wearing turban; U+1F473 +๐ณโโ๏ธ man wearing turban; U+1F473 U+200D U+2642 U+FE0F +๐ณโโ๏ธ woman wearing turban; U+1F473 U+200D U+2640 U+FE0F +๐ฒ man with Chinese cap; U+1F472 +๐ง woman with headscarf; U+1F9D5 +๐คต man in tuxedo; U+1F935 +๐ฐ bride with veil; U+1F470 +๐คฐ pregnant woman; U+1F930 +๐คฑ breast-feeding; U+1F931 +๐ผ baby angel; U+1F47C +๐
Santa Claus; U+1F385 +๐คถ Mrs. Claus; U+1F936 +๐ฆธ superhero; U+1F9B8 +๐ฆธโโ๏ธ man superhero; U+1F9B8 U+200D U+2642 U+FE0F +๐ฆธโโ๏ธ woman superhero; U+1F9B8 U+200D U+2640 U+FE0F +๐ฆน supervillain; U+1F9B9 +๐ฆนโโ๏ธ man supervillain; U+1F9B9 U+200D U+2642 U+FE0F +๐ฆนโโ๏ธ woman supervillain; U+1F9B9 U+200D U+2640 U+FE0F +๐ง mage; U+1F9D9 +๐งโโ๏ธ man mage; U+1F9D9 U+200D U+2642 U+FE0F +๐งโโ๏ธ woman mage; U+1F9D9 U+200D U+2640 U+FE0F +๐ง fairy; U+1F9DA +๐งโโ๏ธ man fairy; U+1F9DA U+200D U+2642 U+FE0F +๐งโโ๏ธ woman fairy; U+1F9DA U+200D U+2640 U+FE0F +๐ง vampire; U+1F9DB +๐งโโ๏ธ man vampire; U+1F9DB U+200D U+2642 U+FE0F +๐งโโ๏ธ woman vampire; U+1F9DB U+200D U+2640 U+FE0F +๐ง merperson; U+1F9DC +๐งโโ๏ธ merman; U+1F9DC U+200D U+2642 U+FE0F +๐งโโ๏ธ mermaid; U+1F9DC U+200D U+2640 U+FE0F +๐ง elf; U+1F9DD +๐งโโ๏ธ man elf; U+1F9DD U+200D U+2642 U+FE0F +๐งโโ๏ธ woman elf; U+1F9DD U+200D U+2640 U+FE0F +๐ง genie; U+1F9DE +๐งโโ๏ธ man genie; U+1F9DE U+200D U+2642 U+FE0F +๐งโโ๏ธ woman genie; U+1F9DE U+200D U+2640 U+FE0F +๐ง zombie; U+1F9DF +๐งโโ๏ธ man zombie; U+1F9DF U+200D U+2642 U+FE0F +๐งโโ๏ธ woman zombie; U+1F9DF U+200D U+2640 U+FE0F +๐ person getting massage; U+1F486 +๐โโ๏ธ man getting massage; U+1F486 U+200D U+2642 U+FE0F +๐โโ๏ธ woman getting massage; U+1F486 U+200D U+2640 U+FE0F +๐ person getting haircut; U+1F487 +๐โโ๏ธ man getting haircut; U+1F487 U+200D U+2642 U+FE0F +๐โโ๏ธ woman getting haircut; U+1F487 U+200D U+2640 U+FE0F +๐ถ person walking; U+1F6B6 +๐ถโโ๏ธ man walking; U+1F6B6 U+200D U+2642 U+FE0F +๐ถโโ๏ธ woman walking; U+1F6B6 U+200D U+2640 U+FE0F +๐ person running; U+1F3C3 +๐โโ๏ธ man running; U+1F3C3 U+200D U+2642 U+FE0F +๐โโ๏ธ woman running; U+1F3C3 U+200D U+2640 U+FE0F +๐ woman dancing; U+1F483 +๐บ man dancing; U+1F57A +๐ด man in suit levitating; U+1F574 +๐ฏ people with bunny ears; U+1F46F +๐ฏโโ๏ธ men with bunny ears; U+1F46F U+200D U+2642 U+FE0F +๐ฏโโ๏ธ women with bunny ears; U+1F46F U+200D U+2640 U+FE0F +๐ง person in steamy room; U+1F9D6 +๐งโโ๏ธ man in steamy room; U+1F9D6 U+200D U+2642 U+FE0F +๐งโโ๏ธ woman in steamy room; U+1F9D6 U+200D U+2640 U+FE0F +๐ง person climbing; U+1F9D7 +๐งโโ๏ธ man climbing; U+1F9D7 U+200D U+2642 U+FE0F +๐งโโ๏ธ woman climbing; U+1F9D7 U+200D U+2640 U+FE0F +๐คบ person fencing; U+1F93A +๐ horse racing; U+1F3C7 +โท skier; U+26F7 +๐ snowboarder; U+1F3C2 +๐ person golfing; U+1F3CC +๐๏ธโโ๏ธ man golfing; U+1F3CC U+FE0F U+200D U+2642 U+FE0F +๐๏ธโโ๏ธ woman golfing; U+1F3CC U+FE0F U+200D U+2640 U+FE0F +๐ person surfing; U+1F3C4 +๐โโ๏ธ man surfing; U+1F3C4 U+200D U+2642 U+FE0F +๐โโ๏ธ woman surfing; U+1F3C4 U+200D U+2640 U+FE0F +๐ฃ person rowing boat; U+1F6A3 +๐ฃโโ๏ธ man rowing boat; U+1F6A3 U+200D U+2642 U+FE0F +๐ฃโโ๏ธ woman rowing boat; U+1F6A3 U+200D U+2640 U+FE0F +๐ person swimming; U+1F3CA +๐โโ๏ธ man swimming; U+1F3CA U+200D U+2642 U+FE0F +๐โโ๏ธ woman swimming; U+1F3CA U+200D U+2640 U+FE0F +โน person bouncing ball; U+26F9 +โน๏ธโโ๏ธ man bouncing ball; U+26F9 U+FE0F U+200D U+2642 U+FE0F +โน๏ธโโ๏ธ woman bouncing ball; U+26F9 U+FE0F U+200D U+2640 U+FE0F +๐ person lifting weights; U+1F3CB +๐๏ธโโ๏ธ man lifting weights; U+1F3CB U+FE0F U+200D U+2642 U+FE0F +๐๏ธโโ๏ธ woman lifting weights; U+1F3CB U+FE0F U+200D U+2640 U+FE0F +๐ด person biking; U+1F6B4 +๐ดโโ๏ธ man biking; U+1F6B4 U+200D U+2642 U+FE0F +๐ดโโ๏ธ woman biking; U+1F6B4 U+200D U+2640 U+FE0F +๐ต person mountain biking; U+1F6B5 +๐ตโโ๏ธ man mountain biking; U+1F6B5 U+200D U+2642 U+FE0F +๐ตโโ๏ธ woman mountain biking; U+1F6B5 U+200D U+2640 U+FE0F +๐คธ person cartwheeling; U+1F938 +๐คธโโ๏ธ man cartwheeling; U+1F938 U+200D U+2642 U+FE0F +๐คธโโ๏ธ woman cartwheeling; U+1F938 U+200D U+2640 U+FE0F +๐คผ people wrestling; U+1F93C +๐คผโโ๏ธ men wrestling; U+1F93C U+200D U+2642 U+FE0F +๐คผโโ๏ธ women wrestling; U+1F93C U+200D U+2640 U+FE0F +๐คฝ person playing water polo; U+1F93D +๐คฝโโ๏ธ man playing water polo; U+1F93D U+200D U+2642 U+FE0F +๐คฝโโ๏ธ woman playing water polo; U+1F93D U+200D U+2640 U+FE0F +๐คพ person playing handball; U+1F93E +๐คพโโ๏ธ man playing handball; U+1F93E U+200D U+2642 U+FE0F +๐คพโโ๏ธ woman playing handball; U+1F93E U+200D U+2640 U+FE0F +๐คน person juggling; U+1F939 +๐คนโโ๏ธ man juggling; U+1F939 U+200D U+2642 U+FE0F +๐คนโโ๏ธ woman juggling; U+1F939 U+200D U+2640 U+FE0F +๐ง person in lotus position; U+1F9D8 +๐งโโ๏ธ man in lotus position; U+1F9D8 U+200D U+2642 U+FE0F +๐งโโ๏ธ woman in lotus position; U+1F9D8 U+200D U+2640 U+FE0F +๐ person taking bath; U+1F6C0 +๐ person in bed; U+1F6CC +๐ญ women holding hands; U+1F46D +๐ซ woman and man holding hands; U+1F46B +๐ฌ men holding hands; U+1F46C +๐ kiss; U+1F48F +๐ฉโโค๏ธโ๐โ๐จ kiss: woman, man; U+1F469 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 +๐จโโค๏ธโ๐โ๐จ kiss: man, man; U+1F468 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 +๐ฉโโค๏ธโ๐โ๐ฉ kiss: woman, woman; U+1F469 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 +๐ couple with heart; U+1F491 +๐ฉโโค๏ธโ๐จ couple with heart: woman, man; U+1F469 U+200D U+2764 U+FE0F U+200D U+1F468 +๐จโโค๏ธโ๐จ couple with heart: man, man; U+1F468 U+200D U+2764 U+FE0F U+200D U+1F468 +๐ฉโโค๏ธโ๐ฉ couple with heart: woman, woman; U+1F469 U+200D U+2764 U+FE0F U+200D U+1F469 +๐ช family; U+1F46A +๐จโ๐ฉโ๐ฆ family: man, woman, boy; U+1F468 U+200D U+1F469 U+200D U+1F466 +๐จโ๐ฉโ๐ง family: man, woman, girl; U+1F468 U+200D U+1F469 U+200D U+1F467 +๐จโ๐ฉโ๐งโ๐ฆ family: man, woman, girl, boy; U+1F468 U+200D U+1F469 U+200D U+1F467 U+200D U+1F466 +๐จโ๐ฉโ๐ฆโ๐ฆ family: man, woman, boy, boy; U+1F468 U+200D U+1F469 U+200D U+1F466 U+200D U+1F466 +๐จโ๐ฉโ๐งโ๐ง family: man, woman, girl, girl; U+1F468 U+200D U+1F469 U+200D U+1F467 U+200D U+1F467 +๐จโ๐จโ๐ฆ family: man, man, boy; U+1F468 U+200D U+1F468 U+200D U+1F466 +๐จโ๐จโ๐ง family: man, man, girl; U+1F468 U+200D U+1F468 U+200D U+1F467 +๐จโ๐จโ๐งโ๐ฆ family: man, man, girl, boy; U+1F468 U+200D U+1F468 U+200D U+1F467 U+200D U+1F466 +๐จโ๐จโ๐ฆโ๐ฆ family: man, man, boy, boy; U+1F468 U+200D U+1F468 U+200D U+1F466 U+200D U+1F466 +๐จโ๐จโ๐งโ๐ง family: man, man, girl, girl; U+1F468 U+200D U+1F468 U+200D U+1F467 U+200D U+1F467 +๐ฉโ๐ฉโ๐ฆ family: woman, woman, boy; U+1F469 U+200D U+1F469 U+200D U+1F466 +๐ฉโ๐ฉโ๐ง family: woman, woman, girl; U+1F469 U+200D U+1F469 U+200D U+1F467 +๐ฉโ๐ฉโ๐งโ๐ฆ family: woman, woman, girl, boy; U+1F469 U+200D U+1F469 U+200D U+1F467 U+200D U+1F466 +๐ฉโ๐ฉโ๐ฆโ๐ฆ family: woman, woman, boy, boy; U+1F469 U+200D U+1F469 U+200D U+1F466 U+200D U+1F466 +๐ฉโ๐ฉโ๐งโ๐ง family: woman, woman, girl, girl; U+1F469 U+200D U+1F469 U+200D U+1F467 U+200D U+1F467 +๐จโ๐ฆ family: man, boy; U+1F468 U+200D U+1F466 +๐จโ๐ฆโ๐ฆ family: man, boy, boy; U+1F468 U+200D U+1F466 U+200D U+1F466 +๐จโ๐ง family: man, girl; U+1F468 U+200D U+1F467 +๐จโ๐งโ๐ฆ family: man, girl, boy; U+1F468 U+200D U+1F467 U+200D U+1F466 +๐จโ๐งโ๐ง family: man, girl, girl; U+1F468 U+200D U+1F467 U+200D U+1F467 +๐ฉโ๐ฆ family: woman, boy; U+1F469 U+200D U+1F466 +๐ฉโ๐ฆโ๐ฆ family: woman, boy, boy; U+1F469 U+200D U+1F466 U+200D U+1F466 +๐ฉโ๐ง family: woman, girl; U+1F469 U+200D U+1F467 +๐ฉโ๐งโ๐ฆ family: woman, girl, boy; U+1F469 U+200D U+1F467 U+200D U+1F466 +๐ฉโ๐งโ๐ง family: woman, girl, girl; U+1F469 U+200D U+1F467 U+200D U+1F467 +๐ฃ speaking head; U+1F5E3 +๐ค bust in silhouette; U+1F464 +๐ฅ busts in silhouette; U+1F465 +๐ฃ footprints; U+1F463 +๐ฆฐ red hair; U+1F9B0 +๐ฆฑ curly hair; U+1F9B1 +๐ฆณ white hair; U+1F9B3 +๐ฆฒ bald; U+1F9B2 +๐ต monkey face; U+1F435 +๐ monkey; U+1F412 +๐ฆ gorilla; U+1F98D +๐ถ dog face; U+1F436 +๐ dog; U+1F415 +๐ฉ poodle; U+1F429 +๐บ wolf face; U+1F43A +๐ฆ fox face; U+1F98A +๐ฆ raccoon; U+1F99D +๐ฑ cat face; U+1F431 +๐ cat; U+1F408 +๐ฆ lion face; U+1F981 +๐ฏ tiger face; U+1F42F +๐
tiger; U+1F405 +๐ leopard; U+1F406 +๐ด horse face; U+1F434 +๐ horse; U+1F40E +๐ฆ unicorn face; U+1F984 +๐ฆ zebra; U+1F993 +๐ฆ deer; U+1F98C +๐ฎ cow face; U+1F42E +๐ ox; U+1F402 +๐ water buffalo; U+1F403 +๐ cow; U+1F404 +๐ท pig face; U+1F437 +๐ pig; U+1F416 +๐ boar; U+1F417 +๐ฝ pig nose; U+1F43D +๐ ram; U+1F40F +๐ ewe; U+1F411 +๐ goat; U+1F410 +๐ช camel; U+1F42A +๐ซ two-hump camel; U+1F42B +๐ฆ llama; U+1F999 +๐ฆ giraffe; U+1F992 +๐ elephant; U+1F418 +๐ฆ rhinoceros; U+1F98F +๐ฆ hippopotamus; U+1F99B +๐ญ mouse face; U+1F42D +๐ mouse; U+1F401 +๐ rat; U+1F400 +๐น hamster face; U+1F439 +๐ฐ rabbit face; U+1F430 +๐ rabbit; U+1F407 +๐ฟ chipmunk; U+1F43F +๐ฆ hedgehog; U+1F994 +๐ฆ bat; U+1F987 +๐ป bear face; U+1F43B +๐จ koala; U+1F428 +๐ผ panda face; U+1F43C +๐ฆ kangaroo; U+1F998 +๐ฆก badger; U+1F9A1 +๐พ paw prints; U+1F43E +๐ฆ turkey; U+1F983 +๐ chicken; U+1F414 +๐ rooster; U+1F413 +๐ฃ hatching chick; U+1F423 +๐ค baby chick; U+1F424 +๐ฅ front-facing baby chick; U+1F425 +๐ฆ bird; U+1F426 +๐ง penguin; U+1F427 +๐ dove; U+1F54A +๐ฆ
eagle; U+1F985 +๐ฆ duck; U+1F986 +๐ฆข swan; U+1F9A2 +๐ฆ owl; U+1F989 +๐ฆ peacock; U+1F99A +๐ฆ parrot; U+1F99C +๐ธ frog face; U+1F438 +๐ crocodile; U+1F40A +๐ข turtle; U+1F422 +๐ฆ lizard; U+1F98E +๐ snake; U+1F40D +๐ฒ dragon face; U+1F432 +๐ dragon; U+1F409 +๐ฆ sauropod; U+1F995 +๐ฆ T-Rex; U+1F996 +๐ณ spouting whale; U+1F433 +๐ whale; U+1F40B +๐ฌ dolphin; U+1F42C +๐ fish; U+1F41F +๐ tropical fish; U+1F420 +๐ก blowfish; U+1F421 +๐ฆ shark; U+1F988 +๐ octopus; U+1F419 +๐ spiral shell; U+1F41A +๐ snail; U+1F40C +๐ฆ butterfly; U+1F98B +๐ bug; U+1F41B +๐ ant; U+1F41C +๐ honeybee; U+1F41D +๐ lady beetle; U+1F41E +๐ฆ cricket; U+1F997 +๐ท spider; U+1F577 +๐ธ spider web; U+1F578 +๐ฆ scorpion; U+1F982 +๐ฆ mosquito; U+1F99F +๐ฆ microbe; U+1F9A0 +๐ bouquet; U+1F490 +๐ธ cherry blossom; U+1F338 +๐ฎ white flower; U+1F4AE +๐ต rosette; U+1F3F5 +๐น rose; U+1F339 +๐ฅ wilted flower; U+1F940 +๐บ hibiscus; U+1F33A +๐ป sunflower; U+1F33B +๐ผ blossom; U+1F33C +๐ท tulip; U+1F337 +๐ฑ seedling; U+1F331 +๐ฒ evergreen tree; U+1F332 +๐ณ deciduous tree; U+1F333 +๐ด palm tree; U+1F334 +๐ต cactus; U+1F335 +๐พ sheaf of rice; U+1F33E +๐ฟ herb; U+1F33F +โ shamrock; U+2618 +๐ four leaf clover; U+1F340 +๐ maple leaf; U+1F341 +๐ fallen leaf; U+1F342 +๐ leaf fluttering in wind; U+1F343 +๐ grapes; U+1F347 +๐ melon; U+1F348 +๐ watermelon; U+1F349 +๐ tangerine; U+1F34A +๐ lemon; U+1F34B +๐ banana; U+1F34C +๐ pineapple; U+1F34D +๐ฅญ mango; U+1F96D +๐ red apple; U+1F34E +๐ green apple; U+1F34F +๐ pear; U+1F350 +๐ peach; U+1F351 +๐ cherries; U+1F352 +๐ strawberry; U+1F353 +๐ฅ kiwi fruit; U+1F95D +๐
tomato; U+1F345 +๐ฅฅ coconut; U+1F965 +๐ฅ avocado; U+1F951 +๐ eggplant; U+1F346 +๐ฅ potato; U+1F954 +๐ฅ carrot; U+1F955 +๐ฝ ear of corn; U+1F33D +๐ถ hot pepper; U+1F336 +๐ฅ cucumber; U+1F952 +๐ฅฌ leafy green; U+1F96C +๐ฅฆ broccoli; U+1F966 +๐ mushroom; U+1F344 +๐ฅ peanuts; U+1F95C +๐ฐ chestnut; U+1F330 +๐ bread; U+1F35E +๐ฅ croissant; U+1F950 +๐ฅ baguette bread; U+1F956 +๐ฅจ pretzel; U+1F968 +๐ฅฏ bagel; U+1F96F +๐ฅ pancakes; U+1F95E +๐ง cheese wedge; U+1F9C0 +๐ meat on bone; U+1F356 +๐ poultry leg; U+1F357 +๐ฅฉ cut of meat; U+1F969 +๐ฅ bacon; U+1F953 +๐ hamburger; U+1F354 +๐ french fries; U+1F35F +๐ pizza; U+1F355 +๐ญ hot dog; U+1F32D +๐ฅช sandwich; U+1F96A +๐ฎ taco; U+1F32E +๐ฏ burrito; U+1F32F +๐ฅ stuffed flatbread; U+1F959 +๐ฅ egg; U+1F95A +๐ณ cooking; U+1F373 +๐ฅ shallow pan of food; U+1F958 +๐ฒ pot of food; U+1F372 +๐ฅฃ bowl with spoon; U+1F963 +๐ฅ green salad; U+1F957 +๐ฟ popcorn; U+1F37F +๐ง salt; U+1F9C2 +๐ฅซ canned food; U+1F96B +๐ฑ bento box; U+1F371 +๐ rice cracker; U+1F358 +๐ rice ball; U+1F359 +๐ cooked rice; U+1F35A +๐ curry rice; U+1F35B +๐ steaming bowl; U+1F35C +๐ spaghetti; U+1F35D +๐ roasted sweet potato; U+1F360 +๐ข oden; U+1F362 +๐ฃ sushi; U+1F363 +๐ค fried shrimp; U+1F364 +๐ฅ fish cake with swirl; U+1F365 +๐ฅฎ moon cake; U+1F96E +๐ก dango; U+1F361 +๐ฅ dumpling; U+1F95F +๐ฅ fortune cookie; U+1F960 +๐ฅก takeout box; U+1F961 +๐ฆ crab; U+1F980 +๐ฆ lobster; U+1F99E +๐ฆ shrimp; U+1F990 +๐ฆ squid; U+1F991 +๐ฆ soft ice cream; U+1F366 +๐ง shaved ice; U+1F367 +๐จ ice cream; U+1F368 +๐ฉ doughnut; U+1F369 +๐ช cookie; U+1F36A +๐ birthday cake; U+1F382 +๐ฐ shortcake; U+1F370 +๐ง cupcake; U+1F9C1 +๐ฅง pie; U+1F967 +๐ซ chocolate bar; U+1F36B +๐ฌ candy; U+1F36C +๐ญ lollipop; U+1F36D +๐ฎ custard; U+1F36E +๐ฏ honey pot; U+1F36F +๐ผ baby bottle; U+1F37C +๐ฅ glass of milk; U+1F95B +โ hot beverage; U+2615 +๐ต teacup without handle; U+1F375 +๐ถ sake; U+1F376 +๐พ bottle with popping cork; U+1F37E +๐ท wine glass; U+1F377 +๐ธ cocktail glass; U+1F378 +๐น tropical drink; U+1F379 +๐บ beer mug; U+1F37A +๐ป clinking beer mugs; U+1F37B +๐ฅ clinking glasses; U+1F942 +๐ฅ tumbler glass; U+1F943 +๐ฅค cup with straw; U+1F964 +๐ฅข chopsticks; U+1F962 +๐ฝ fork and knife with plate; U+1F37D +๐ด fork and knife; U+1F374 +๐ฅ spoon; U+1F944 +๐ช kitchen knife; U+1F52A +๐บ amphora; U+1F3FA +๐ globe showing Europe-Africa; U+1F30D +๐ globe showing Americas; U+1F30E +๐ globe showing Asia-Australia; U+1F30F +๐ globe with meridians; U+1F310 +๐บ world map; U+1F5FA +๐พ map of Japan; U+1F5FE +๐งญ compass; U+1F9ED +๐ snow-capped mountain; U+1F3D4 +โฐ mountain; U+26F0 +๐ volcano; U+1F30B +๐ป mount fuji; U+1F5FB +๐ camping; U+1F3D5 +๐ beach with umbrella; U+1F3D6 +๐ desert; U+1F3DC +๐ desert island; U+1F3DD +๐ national park; U+1F3DE +๐ stadium; U+1F3DF +๐ classical building; U+1F3DB +๐ building construction; U+1F3D7 +๐งฑ brick; U+1F9F1 +๐ houses; U+1F3D8 +๐ derelict house; U+1F3DA +๐ house; U+1F3E0 +๐ก house with garden; U+1F3E1 +๐ข office building; U+1F3E2 +๐ฃ Japanese post office; U+1F3E3 +๐ค post office; U+1F3E4 +๐ฅ hospital; U+1F3E5 +๐ฆ bank; U+1F3E6 +๐จ hotel; U+1F3E8 +๐ฉ love hotel; U+1F3E9 +๐ช convenience store; U+1F3EA +๐ซ school; U+1F3EB +๐ฌ department store; U+1F3EC +๐ญ factory; U+1F3ED +๐ฏ Japanese castle; U+1F3EF +๐ฐ castle; U+1F3F0 +๐ wedding; U+1F492 +๐ผ Tokyo tower; U+1F5FC +๐ฝ Statue of Liberty; U+1F5FD +โช church; U+26EA +๐ mosque; U+1F54C +๐ synagogue; U+1F54D +โฉ shinto shrine; U+26E9 +๐ kaaba; U+1F54B +โฒ fountain; U+26F2 +โบ tent; U+26FA +๐ foggy; U+1F301 +๐ night with stars; U+1F303 +๐ cityscape; U+1F3D9 +๐ sunrise over mountains; U+1F304 +๐
sunrise; U+1F305 +๐ cityscape at dusk; U+1F306 +๐ sunset; U+1F307 +๐ bridge at night; U+1F309 +โจ hot springs; U+2668 +๐ milky way; U+1F30C +๐ carousel horse; U+1F3A0 +๐ก ferris wheel; U+1F3A1 +๐ข roller coaster; U+1F3A2 +๐ barber pole; U+1F488 +๐ช circus tent; U+1F3AA +๐ locomotive; U+1F682 +๐ railway car; U+1F683 +๐ high-speed train; U+1F684 +๐
bullet train; U+1F685 +๐ train; U+1F686 +๐ metro; U+1F687 +๐ light rail; U+1F688 +๐ station; U+1F689 +๐ tram; U+1F68A +๐ monorail; U+1F69D +๐ mountain railway; U+1F69E +๐ tram car; U+1F68B +๐ bus; U+1F68C +๐ oncoming bus; U+1F68D +๐ trolleybus; U+1F68E +๐ minibus; U+1F690 +๐ ambulance; U+1F691 +๐ fire engine; U+1F692 +๐ police car; U+1F693 +๐ oncoming police car; U+1F694 +๐ taxi; U+1F695 +๐ oncoming taxi; U+1F696 +๐ automobile; U+1F697 +๐ oncoming automobile; U+1F698 +๐ sport utility vehicle; U+1F699 +๐ delivery truck; U+1F69A +๐ articulated lorry; U+1F69B +๐ tractor; U+1F69C +๐ racing car; U+1F3CE +๐ motorcycle; U+1F3CD +๐ต motor scooter; U+1F6F5 +๐ฒ bicycle; U+1F6B2 +๐ด kick scooter; U+1F6F4 +๐น skateboard; U+1F6F9 +๐ bus stop; U+1F68F +๐ฃ motorway; U+1F6E3 +๐ค railway track; U+1F6E4 +๐ข oil drum; U+1F6E2 +โฝ fuel pump; U+26FD +๐จ police car light; U+1F6A8 +๐ฅ horizontal traffic light; U+1F6A5 +๐ฆ vertical traffic light; U+1F6A6 +๐ stop sign; U+1F6D1 +๐ง construction; U+1F6A7 +โ anchor; U+2693 +โต sailboat; U+26F5 +๐ถ canoe; U+1F6F6 +๐ค speedboat; U+1F6A4 +๐ณ passenger ship; U+1F6F3 +โด ferry; U+26F4 +๐ฅ motor boat; U+1F6E5 +๐ข ship; U+1F6A2 +โ airplane; U+2708 +๐ฉ small airplane; U+1F6E9 +๐ซ airplane departure; U+1F6EB +๐ฌ airplane arrival; U+1F6EC +๐บ seat; U+1F4BA +๐ helicopter; U+1F681 +๐ suspension railway; U+1F69F +๐ mountain cableway; U+1F6A0 +๐ก aerial tramway; U+1F6A1 +๐ฐ satellite; U+1F6F0 +๐ rocket; U+1F680 +๐ธ flying saucer; U+1F6F8 +๐ bellhop bell; U+1F6CE +๐งณ luggage; U+1F9F3 +โ hourglass done; U+231B +โณ hourglass not done; U+23F3 +โ watch; U+231A +โฐ alarm clock; U+23F0 +โฑ stopwatch; U+23F1 +โฒ timer clock; U+23F2 +๐ฐ mantelpiece clock; U+1F570 +๐ twelve oโclock; U+1F55B +๐ง twelve-thirty; U+1F567 +๐ one oโclock; U+1F550 +๐ one-thirty; U+1F55C +๐ two oโclock; U+1F551 +๐ two-thirty; U+1F55D +๐ three oโclock; U+1F552 +๐ three-thirty; U+1F55E +๐ four oโclock; U+1F553 +๐ four-thirty; U+1F55F +๐ five oโclock; U+1F554 +๐ five-thirty; U+1F560 +๐ six oโclock; U+1F555 +๐ก six-thirty; U+1F561 +๐ seven oโclock; U+1F556 +๐ข seven-thirty; U+1F562 +๐ eight oโclock; U+1F557 +๐ฃ eight-thirty; U+1F563 +๐ nine oโclock; U+1F558 +๐ค nine-thirty; U+1F564 +๐ ten oโclock; U+1F559 +๐ฅ ten-thirty; U+1F565 +๐ eleven oโclock; U+1F55A +๐ฆ eleven-thirty; U+1F566 +๐ new moon; U+1F311 +๐ waxing crescent moon; U+1F312 +๐ first quarter moon; U+1F313 +๐ waxing gibbous moon; U+1F314 +๐ full moon; U+1F315 +๐ waning gibbous moon; U+1F316 +๐ last quarter moon; U+1F317 +๐ waning crescent moon; U+1F318 +๐ crescent moon; U+1F319 +๐ new moon face; U+1F31A +๐ first quarter moon face; U+1F31B +๐ last quarter moon face; U+1F31C +๐ก thermometer; U+1F321 +โ sun; U+2600 +๐ full moon face; U+1F31D +๐ sun with face; U+1F31E +โญ star; U+2B50 +๐ glowing star; U+1F31F +๐ shooting star; U+1F320 +โ cloud; U+2601 +โ
sun behind cloud; U+26C5 +โ cloud with lightning and rain; U+26C8 +๐ค sun behind small cloud; U+1F324 +๐ฅ sun behind large cloud; U+1F325 +๐ฆ sun behind rain cloud; U+1F326 +๐ง cloud with rain; U+1F327 +๐จ cloud with snow; U+1F328 +๐ฉ cloud with lightning; U+1F329 +๐ช tornado; U+1F32A +๐ซ fog; U+1F32B +๐ฌ wind face; U+1F32C +๐ cyclone; U+1F300 +๐ rainbow; U+1F308 +๐ closed umbrella; U+1F302 +โ umbrella; U+2602 +โ umbrella with rain drops; U+2614 +โฑ umbrella on ground; U+26F1 +โก high voltage; U+26A1 +โ snowflake; U+2744 +โ snowman; U+2603 +โ snowman without snow; U+26C4 +โ comet; U+2604 +๐ฅ fire; U+1F525 +๐ง droplet; U+1F4A7 +๐ water wave; U+1F30A +๐ jack-o-lantern; U+1F383 +๐ Christmas tree; U+1F384 +๐ fireworks; U+1F386 +๐ sparkler; U+1F387 +๐งจ firecracker; U+1F9E8 +โจ sparkles; U+2728 +๐ balloon; U+1F388 +๐ party popper; U+1F389 +๐ confetti ball; U+1F38A +๐ tanabata tree; U+1F38B +๐ pine decoration; U+1F38D +๐ Japanese dolls; U+1F38E +๐ carp streamer; U+1F38F +๐ wind chime; U+1F390 +๐ moon viewing ceremony; U+1F391 +๐งง red envelope; U+1F9E7 +๐ ribbon; U+1F380 +๐ wrapped gift; U+1F381 +๐ reminder ribbon; U+1F397 +๐ admission tickets; U+1F39F +๐ซ ticket; U+1F3AB +๐ military medal; U+1F396 +๐ trophy; U+1F3C6 +๐
sports medal; U+1F3C5 +1st place medal; U+1F947 ๐ฅ +2nd place medal; U+1F948 ๐ฅ +3rd place medal; U+1F949 ๐ฅ +โฝ soccer ball; U+26BD +โพ baseball; U+26BE +๐ฅ softball; U+1F94E +๐ basketball; U+1F3C0 +๐ volleyball; U+1F3D0 +๐ american football; U+1F3C8 +๐ rugby football; U+1F3C9 +๐พ tennis; U+1F3BE +๐ฅ flying disc; U+1F94F +๐ณ bowling; U+1F3B3 +๐ cricket game; U+1F3CF +๐ field hockey; U+1F3D1 +๐ ice hockey; U+1F3D2 +๐ฅ lacrosse; U+1F94D +๐ ping pong; U+1F3D3 +๐ธ badminton; U+1F3F8 +๐ฅ boxing glove; U+1F94A +๐ฅ martial arts uniform; U+1F94B +๐ฅ
goal net; U+1F945 +โณ flag in hole; U+26F3 +โธ ice skate; U+26F8 +๐ฃ fishing pole; U+1F3A3 +๐ฝ running shirt; U+1F3BD +๐ฟ skis; U+1F3BF +๐ท sled; U+1F6F7 +๐ฅ curling stone; U+1F94C +๐ฏ direct hit; U+1F3AF +๐ฑ pool 8 ball; U+1F3B1 +๐ฎ crystal ball; U+1F52E +๐งฟ nazar amulet; U+1F9FF +๐ฎ video game; U+1F3AE +๐น joystick; U+1F579 +๐ฐ slot machine; U+1F3B0 +๐ฒ game die; U+1F3B2 +๐งฉ jigsaw; U+1F9E9 +๐งธ teddy bear; U+1F9F8 +โ spade suit; U+2660 +โฅ heart suit; U+2665 +โฆ diamond suit; U+2666 +โฃ club suit; U+2663 +โ chess pawn; U+265F +๐ joker; U+1F0CF +๐ mahjong red dragon; U+1F004 +๐ด flower playing cards; U+1F3B4 +๐ญ performing arts; U+1F3AD +๐ผ framed picture; U+1F5BC +๐จ artist palette; U+1F3A8 +๐งต thread; U+1F9F5 +๐งถ yarn; U+1F9F6 +๐ glasses; U+1F453 +๐ถ sunglasses; U+1F576 +๐ฅฝ goggles; U+1F97D +๐ฅผ lab coat; U+1F97C +๐ necktie; U+1F454 +๐ t-shirt; U+1F455 +๐ jeans; U+1F456 +๐งฃ scarf; U+1F9E3 +๐งค gloves; U+1F9E4 +๐งฅ coat; U+1F9E5 +๐งฆ socks; U+1F9E6 +๐ dress; U+1F457 +๐ kimono; U+1F458 +๐ bikini; U+1F459 +๐ womanโs clothes; U+1F45A +๐ purse; U+1F45B +๐ handbag; U+1F45C +๐ clutch bag; U+1F45D +๐ shopping bags; U+1F6CD +๐ backpack; U+1F392 +๐ manโs shoe; U+1F45E +๐ running shoe; U+1F45F +๐ฅพ hiking boot; U+1F97E +๐ฅฟ flat shoe; U+1F97F +๐ high-heeled shoe; U+1F460 +๐ก womanโs sandal; U+1F461 +๐ข womanโs boot; U+1F462 +๐ crown; U+1F451 +๐ womanโs hat; U+1F452 +๐ฉ top hat; U+1F3A9 +๐ graduation cap; U+1F393 +๐งข billed cap; U+1F9E2 +โ rescue workerโs helmet; U+26D1 +๐ฟ prayer beads; U+1F4FF +๐ lipstick; U+1F484 +๐ ring; U+1F48D +๐ gem stone; U+1F48E +๐ muted speaker; U+1F507 +๐ speaker low volume; U+1F508 +๐ speaker medium volume; U+1F509 +๐ speaker high volume; U+1F50A +๐ข loudspeaker; U+1F4E2 +๐ฃ megaphone; U+1F4E3 +๐ฏ postal horn; U+1F4EF +๐ bell; U+1F514 +๐ bell with slash; U+1F515 +๐ผ musical score; U+1F3BC +๐ต musical note; U+1F3B5 +๐ถ musical notes; U+1F3B6 +๐ studio microphone; U+1F399 +๐ level slider; U+1F39A +๐ control knobs; U+1F39B +๐ค microphone; U+1F3A4 +๐ง headphone; U+1F3A7 +๐ป radio; U+1F4FB +๐ท saxophone; U+1F3B7 +๐ธ guitar; U+1F3B8 +๐น musical keyboard; U+1F3B9 +๐บ trumpet; U+1F3BA +๐ป violin; U+1F3BB +๐ฅ drum; U+1F941 +๐ฑ mobile phone; U+1F4F1 +๐ฒ mobile phone with arrow; U+1F4F2 +โ telephone; U+260E +๐ telephone receiver; U+1F4DE +๐ pager; U+1F4DF +๐ fax machine; U+1F4E0 +๐ battery; U+1F50B +๐ electric plug; U+1F50C +๐ป laptop computer; U+1F4BB +๐ฅ desktop computer; U+1F5A5 +๐จ printer; U+1F5A8 +โจ keyboard; U+2328 +๐ฑ computer mouse; U+1F5B1 +๐ฒ trackball; U+1F5B2 +๐ฝ computer disk; U+1F4BD +๐พ floppy disk; U+1F4BE +๐ฟ optical disk; U+1F4BF +๐ dvd; U+1F4C0 +๐งฎ abacus; U+1F9EE +๐ฅ movie camera; U+1F3A5 +๐ film frames; U+1F39E +๐ฝ film projector; U+1F4FD +๐ฌ clapper board; U+1F3AC +๐บ television; U+1F4FA +๐ท camera; U+1F4F7 +๐ธ camera with flash; U+1F4F8 +๐น video camera; U+1F4F9 +๐ผ videocassette; U+1F4FC +๐ magnifying glass tilted left; U+1F50D +๐ magnifying glass tilted right; U+1F50E +๐ฏ candle; U+1F56F +๐ก light bulb; U+1F4A1 +๐ฆ flashlight; U+1F526 +๐ฎ red paper lantern; U+1F3EE +๐ notebook with decorative cover; U+1F4D4 +๐ closed book; U+1F4D5 +๐ open book; U+1F4D6 +๐ green book; U+1F4D7 +๐ blue book; U+1F4D8 +๐ orange book; U+1F4D9 +๐ books; U+1F4DA +๐ notebook; U+1F4D3 +๐ ledger; U+1F4D2 +๐ page with curl; U+1F4C3 +๐ scroll; U+1F4DC +๐ page facing up; U+1F4C4 +๐ฐ newspaper; U+1F4F0 +๐ rolled-up newspaper; U+1F5DE +๐ bookmark tabs; U+1F4D1 +๐ bookmark; U+1F516 +๐ท label; U+1F3F7 +๐ฐ money bag; U+1F4B0 +๐ด yen banknote; U+1F4B4 +๐ต dollar banknote; U+1F4B5 +๐ถ euro banknote; U+1F4B6 +๐ท pound banknote; U+1F4B7 +๐ธ money with wings; U+1F4B8 +๐ณ credit card; U+1F4B3 +๐งพ receipt; U+1F9FE +๐น chart increasing with yen; U+1F4B9 +๐ฑ currency exchange; U+1F4B1 +๐ฒ heavy dollar sign; U+1F4B2 +โ envelope; U+2709 +๐ง e-mail; U+1F4E7 +๐จ incoming envelope; U+1F4E8 +๐ฉ envelope with arrow; U+1F4E9 +๐ค outbox tray; U+1F4E4 +๐ฅ inbox tray; U+1F4E5 +๐ฆ package; U+1F4E6 +๐ซ closed mailbox with raised flag; U+1F4EB +๐ช closed mailbox with lowered flag; U+1F4EA +๐ฌ open mailbox with raised flag; U+1F4EC +๐ญ open mailbox with lowered flag; U+1F4ED +๐ฎ postbox; U+1F4EE +๐ณ ballot box with ballot; U+1F5F3 +โ pencil; U+270F +โ black nib; U+2712 +๐ fountain pen; U+1F58B +๐ pen; U+1F58A +๐ paintbrush; U+1F58C +๐ crayon; U+1F58D +๐ memo; U+1F4DD +๐ผ briefcase; U+1F4BC +๐ file folder; U+1F4C1 +๐ open file folder; U+1F4C2 +๐ card index dividers; U+1F5C2 +๐
calendar; U+1F4C5 +๐ tear-off calendar; U+1F4C6 +๐ spiral notepad; U+1F5D2 +๐ spiral calendar; U+1F5D3 +๐ card index; U+1F4C7 +๐ chart increasing; U+1F4C8 +๐ chart decreasing; U+1F4C9 +๐ bar chart; U+1F4CA +๐ clipboard; U+1F4CB +๐ pushpin; U+1F4CC +๐ round pushpin; U+1F4CD +๐ paperclip; U+1F4CE +๐ linked paperclips; U+1F587 +๐ straight ruler; U+1F4CF +๐ triangular ruler; U+1F4D0 +โ scissors; U+2702 +๐ card file box; U+1F5C3 +๐ file cabinet; U+1F5C4 +๐ wastebasket; U+1F5D1 +๐ locked; U+1F512 +๐ unlocked; U+1F513 +๐ locked with pen; U+1F50F +๐ locked with key; U+1F510 +๐ key; U+1F511 +๐ old key; U+1F5DD +๐จ hammer; U+1F528 +โ pick; U+26CF +โ hammer and pick; U+2692 +๐ hammer and wrench; U+1F6E0 +๐ก dagger; U+1F5E1 +โ crossed swords; U+2694 +๐ซ pistol; U+1F52B +๐น bow and arrow; U+1F3F9 +๐ก shield; U+1F6E1 +๐ง wrench; U+1F527 +๐ฉ nut and bolt; U+1F529 +โ gear; U+2699 +๐ clamp; U+1F5DC +โ balance scale; U+2696 +๐ link; U+1F517 +โ chains; U+26D3 +๐งฐ toolbox; U+1F9F0 +๐งฒ magnet; U+1F9F2 +โ alembic; U+2697 +๐งช test tube; U+1F9EA +๐งซ petri dish; U+1F9EB +๐งฌ dna; U+1F9EC +๐ฌ microscope; U+1F52C +๐ญ telescope; U+1F52D +๐ก satellite antenna; U+1F4E1 +๐ syringe; U+1F489 +๐ pill; U+1F48A +๐ช door; U+1F6AA +๐ bed; U+1F6CF +๐ couch and lamp; U+1F6CB +๐ฝ toilet; U+1F6BD +๐ฟ shower; U+1F6BF +๐ bathtub; U+1F6C1 +๐งด lotion bottle; U+1F9F4 +๐งท safety pin; U+1F9F7 +๐งน broom; U+1F9F9 +๐งบ basket; U+1F9FA +๐งป roll of paper; U+1F9FB +๐งผ soap; U+1F9FC +๐งฝ sponge; U+1F9FD +๐งฏ fire extinguisher; U+1F9EF +๐ shopping cart; U+1F6D2 +๐ฌ cigarette; U+1F6AC +โฐ coffin; U+26B0 +โฑ funeral urn; U+26B1 +๐ฟ moai; U+1F5FF +๐ง ATM sign; U+1F3E7 +๐ฎ litter in bin sign; U+1F6AE +๐ฐ potable water; U+1F6B0 +โฟ wheelchair symbol; U+267F +๐น menโs room; U+1F6B9 +๐บ womenโs room; U+1F6BA +๐ป restroom; U+1F6BB +๐ผ baby symbol; U+1F6BC +๐พ water closet; U+1F6BE +๐ passport control; U+1F6C2 +๐ customs; U+1F6C3 +๐ baggage claim; U+1F6C4 +๐
left luggage; U+1F6C5 +โ warning; U+26A0 +๐ธ children crossing; U+1F6B8 +โ no entry; U+26D4 +๐ซ prohibited; U+1F6AB +๐ณ no bicycles; U+1F6B3 +๐ญ no smoking; U+1F6AD +๐ฏ no littering; U+1F6AF +๐ฑ non-potable water; U+1F6B1 +๐ท no pedestrians; U+1F6B7 +๐ต no mobile phones; U+1F4F5 +๐ no one under eighteen; U+1F51E +โข radioactive; U+2622 +โฃ biohazard; U+2623 +โฌ up arrow; U+2B06 +โ up-right arrow; U+2197 +โก right arrow; U+27A1 +โ down-right arrow; U+2198 +โฌ down arrow; U+2B07 +โ down-left arrow; U+2199 +โฌ
left arrow; U+2B05 +โ up-left arrow; U+2196 +โ up-down arrow; U+2195 +โ left-right arrow; U+2194 +โฉ right arrow curving left; U+21A9 +โช left arrow curving right; U+21AA +โคด right arrow curving up; U+2934 +โคต right arrow curving down; U+2935 +๐ clockwise vertical arrows; U+1F503 +๐ counterclockwise arrows button; U+1F504 +๐ BACK arrow; U+1F519 +๐ END arrow; U+1F51A +๐ ON! arrow; U+1F51B +๐ SOON arrow; U+1F51C +๐ TOP arrow; U+1F51D +๐ place of worship; U+1F6D0 +โ atom symbol; U+269B +๐ om; U+1F549 +โก star of David; U+2721 +โธ wheel of dharma; U+2638 +โฏ yin yang; U+262F +โ latin cross; U+271D +โฆ orthodox cross; U+2626 +โช star and crescent; U+262A +โฎ peace symbol; U+262E +๐ menorah; U+1F54E +๐ฏ dotted six-pointed star; U+1F52F +โ Aries; U+2648 +โ Taurus; U+2649 +โ Gemini; U+264A +โ Cancer; U+264B +โ Leo; U+264C +โ Virgo; U+264D +โ Libra; U+264E +โ Scorpio; U+264F +โ Sagittarius; U+2650 +โ Capricorn; U+2651 +โ Aquarius; U+2652 +โ Pisces; U+2653 +โ Ophiuchus; U+26CE +๐ shuffle tracks button; U+1F500 +๐ repeat button; U+1F501 +๐ repeat single button; U+1F502 +โถ play button; U+25B6 +โฉ fast-forward button; U+23E9 +โญ next track button; U+23ED +โฏ play or pause button; U+23EF +โ reverse button; U+25C0 +โช fast reverse button; U+23EA +โฎ last track button; U+23EE +๐ผ upwards button; U+1F53C +โซ fast up button; U+23EB +๐ฝ downwards button; U+1F53D +โฌ fast down button; U+23EC +โธ pause button; U+23F8 +โน stop button; U+23F9 +โบ record button; U+23FA +โ eject button; U+23CF +๐ฆ cinema; U+1F3A6 +๐
dim button; U+1F505 +๐ bright button; U+1F506 +๐ถ antenna bars; U+1F4F6 +๐ณ vibration mode; U+1F4F3 +๐ด mobile phone off; U+1F4F4 +โ female sign; U+2640 +โ male sign; U+2642 +โ medical symbol; U+2695 +โพ infinity; U+267E +โป recycling symbol; U+267B +โ fleur-de-lis; U+269C +๐ฑ trident emblem; U+1F531 +๐ name badge; U+1F4DB +๐ฐ Japanese symbol for beginner; U+1F530 +โญ heavy large circle; U+2B55 +โ
white heavy check mark; U+2705 +โ ballot box with check; U+2611 +โ heavy check mark; U+2714 +โ heavy multiplication x; U+2716 +โ cross mark; U+274C +โ cross mark button; U+274E +โ heavy plus sign; U+2795 +โ heavy minus sign; U+2796 +โ heavy division sign; U+2797 +โฐ curly loop; U+27B0 +โฟ double curly loop; U+27BF +ใฝ part alternation mark; U+303D +โณ eight-spoked asterisk; U+2733 +โด eight-pointed star; U+2734 +โ sparkle; U+2747 +โผ double exclamation mark; U+203C +โ exclamation question mark; U+2049 +โ question mark; U+2753 +โ white question mark; U+2754 +โ white exclamation mark; U+2755 +โ exclamation mark; U+2757 +ใฐ wavy dash; U+3030 +ยฉ copyright; U+00A9 +ยฎ registered; U+00AE +โข trade mark; U+2122 +#๏ธโฃ keycap: #; U+0023 U+FE0F U+20E3 +*๏ธโฃ keycap: *; U+002A U+FE0F U+20E3 +0๏ธโฃ keycap: 0; U+0030 U+FE0F U+20E3 +1๏ธโฃ keycap: 1; U+0031 U+FE0F U+20E3 +2๏ธโฃ keycap: 2; U+0032 U+FE0F U+20E3 +3๏ธโฃ keycap: 3; U+0033 U+FE0F U+20E3 +4๏ธโฃ keycap: 4; U+0034 U+FE0F U+20E3 +5๏ธโฃ keycap: 5; U+0035 U+FE0F U+20E3 +6๏ธโฃ keycap: 6; U+0036 U+FE0F U+20E3 +7๏ธโฃ keycap: 7; U+0037 U+FE0F U+20E3 +8๏ธโฃ keycap: 8; U+0038 U+FE0F U+20E3 +9๏ธโฃ keycap: 9; U+0039 U+FE0F U+20E3 +๐ keycap: 10; U+1F51F +๐ input latin uppercase; U+1F520 +๐ก input latin lowercase; U+1F521 +๐ข input numbers; U+1F522 +๐ฃ input symbols; U+1F523 +๐ค input latin letters; U+1F524 +๐
ฐ A button (blood type); U+1F170 +๐ AB button (blood type); U+1F18E +๐
ฑ B button (blood type); U+1F171 +๐ CL button; U+1F191 +๐ COOL button; U+1F192 +๐ FREE button; U+1F193 +โน information; U+2139 +๐ ID button; U+1F194 +โ circled M; U+24C2 +๐ NEW button; U+1F195 +๐ NG button; U+1F196 +๐
พ O button (blood type); U+1F17E +๐ OK button; U+1F197 +๐
ฟ P button; U+1F17F +๐ SOS button; U+1F198 +๐ UP! button; U+1F199 +๐ VS button; U+1F19A +๐ Japanese โhereโ button; U+1F201 +๐ Japanese โservice chargeโ button; U+1F202 +๐ท Japanese โmonthly amountโ button; U+1F237 +๐ถ Japanese โnot free of chargeโ button; U+1F236 +๐ฏ Japanese โreservedโ button; U+1F22F +๐ Japanese โbargainโ button; U+1F250 +๐น Japanese โdiscountโ button; U+1F239 +๐ Japanese โfree of chargeโ button; U+1F21A +๐ฒ Japanese โprohibitedโ button; U+1F232 +๐ Japanese โacceptableโ button; U+1F251 +๐ธ Japanese โapplicationโ button; U+1F238 +๐ด Japanese โpassing gradeโ button; U+1F234 +๐ณ Japanese โvacancyโ button; U+1F233 +ใ Japanese โcongratulationsโ button; U+3297 +ใ Japanese โsecretโ button; U+3299 +๐บ Japanese โopen for businessโ button; U+1F23A +๐ต Japanese โno vacancyโ button; U+1F235 +๐ด red circle; U+1F534 +๐ต blue circle; U+1F535 +โช white circle; U+26AA +โซ black circle; U+26AB +โฌ white large square; U+2B1C +โฌ black large square; U+2B1B +โผ black medium square; U+25FC +โป white medium square; U+25FB +โฝ white medium-small square; U+25FD +โพ black medium-small square; U+25FE +โซ white small square; U+25AB +โช black small square; U+25AA +๐ถ large orange diamond; U+1F536 +๐ท large blue diamond; U+1F537 +๐ธ small orange diamond; U+1F538 +๐น small blue diamond; U+1F539 +๐บ red triangle pointed up; U+1F53A +๐ป red triangle pointed down; U+1F53B +๐ diamond with a dot; U+1F4A0 +๐ radio button; U+1F518 +๐ฒ black square button; U+1F532 +๐ณ white square button; U+1F533 +๐ chequered flag; U+1F3C1 +๐ฉ triangular flag; U+1F6A9 +๐ crossed flags; U+1F38C +๐ด black flag; U+1F3F4 +๐ณ white flag; U+1F3F3 +๐ณ๏ธโ๐ rainbow flag; U+1F3F3 U+FE0F U+200D U+1F308 +๐ดโโ ๏ธ pirate flag; U+1F3F4 U+200D U+2620 U+FE0F +๐ฆ๐จ flag: Ascension Island; U+1F1E6 U+1F1E8 +๐ฆ๐ฉ flag: Andorra; U+1F1E6 U+1F1E9 +๐ฆ๐ช flag: United Arab Emirates; U+1F1E6 U+1F1EA +๐ฆ๐ซ flag: Afghanistan; U+1F1E6 U+1F1EB +๐ฆ๐ฌ flag: Antigua & Barbuda; U+1F1E6 U+1F1EC +๐ฆ๐ฎ flag: Anguilla; U+1F1E6 U+1F1EE +๐ฆ๐ฑ flag: Albania; U+1F1E6 U+1F1F1 +๐ฆ๐ฒ flag: Armenia; U+1F1E6 U+1F1F2 +๐ฆ๐ด flag: Angola; U+1F1E6 U+1F1F4 +๐ฆ๐ถ flag: Antarctica; U+1F1E6 U+1F1F6 +๐ฆ๐ท flag: Argentina; U+1F1E6 U+1F1F7 +๐ฆ๐ธ flag: American Samoa; U+1F1E6 U+1F1F8 +๐ฆ๐น flag: Austria; U+1F1E6 U+1F1F9 +๐ฆ๐บ flag: Australia; U+1F1E6 U+1F1FA +๐ฆ๐ผ flag: Aruba; U+1F1E6 U+1F1FC +๐ฆ๐ฝ flag: ร
land Islands; U+1F1E6 U+1F1FD +๐ฆ๐ฟ flag: Azerbaijan; U+1F1E6 U+1F1FF +๐ง๐ฆ flag: Bosnia & Herzegovina; U+1F1E7 U+1F1E6 +๐ง๐ง flag: Barbados; U+1F1E7 U+1F1E7 +๐ง๐ฉ flag: Bangladesh; U+1F1E7 U+1F1E9 +๐ง๐ช flag: Belgium; U+1F1E7 U+1F1EA +๐ง๐ซ flag: Burkina Faso; U+1F1E7 U+1F1EB +๐ง๐ฌ flag: Bulgaria; U+1F1E7 U+1F1EC +๐ง๐ญ flag: Bahrain; U+1F1E7 U+1F1ED +๐ง๐ฎ flag: Burundi; U+1F1E7 U+1F1EE +๐ง๐ฏ flag: Benin; U+1F1E7 U+1F1EF +๐ง๐ฑ flag: St. Barthรฉlemy; U+1F1E7 U+1F1F1 +๐ง๐ฒ flag: Bermuda; U+1F1E7 U+1F1F2 +๐ง๐ณ flag: Brunei; U+1F1E7 U+1F1F3 +๐ง๐ด flag: Bolivia; U+1F1E7 U+1F1F4 +๐ง๐ถ flag: Caribbean Netherlands; U+1F1E7 U+1F1F6 +๐ง๐ท flag: Brazil; U+1F1E7 U+1F1F7 +๐ง๐ธ flag: Bahamas; U+1F1E7 U+1F1F8 +๐ง๐น flag: Bhutan; U+1F1E7 U+1F1F9 +๐ง๐ป flag: Bouvet Island; U+1F1E7 U+1F1FB +๐ง๐ผ flag: Botswana; U+1F1E7 U+1F1FC +๐ง๐พ flag: Belarus; U+1F1E7 U+1F1FE +๐ง๐ฟ flag: Belize; U+1F1E7 U+1F1FF +๐จ๐ฆ flag: Canada; U+1F1E8 U+1F1E6 +๐จ๐จ flag: Cocos (Keeling) Islands; U+1F1E8 U+1F1E8 +๐จ๐ฉ flag: Congo - Kinshasa; U+1F1E8 U+1F1E9 +๐จ๐ซ flag: Central African Republic; U+1F1E8 U+1F1EB +๐จ๐ฌ flag: Congo - Brazzaville; U+1F1E8 U+1F1EC +๐จ๐ญ flag: Switzerland; U+1F1E8 U+1F1ED +๐จ๐ฎ flag: Cรดte dโIvoire; U+1F1E8 U+1F1EE +๐จ๐ฐ flag: Cook Islands; U+1F1E8 U+1F1F0 +๐จ๐ฑ flag: Chile; U+1F1E8 U+1F1F1 +๐จ๐ฒ flag: Cameroon; U+1F1E8 U+1F1F2 +๐จ๐ณ flag: China; U+1F1E8 U+1F1F3 +๐จ๐ด flag: Colombia; U+1F1E8 U+1F1F4 +๐จ๐ต flag: Clipperton Island; U+1F1E8 U+1F1F5 +๐จ๐ท flag: Costa Rica; U+1F1E8 U+1F1F7 +๐จ๐บ flag: Cuba; U+1F1E8 U+1F1FA +๐จ๐ป flag: Cape Verde; U+1F1E8 U+1F1FB +๐จ๐ผ flag: Curaรงao; U+1F1E8 U+1F1FC +๐จ๐ฝ flag: Christmas Island; U+1F1E8 U+1F1FD +๐จ๐พ flag: Cyprus; U+1F1E8 U+1F1FE +๐จ๐ฟ flag: Czechia; U+1F1E8 U+1F1FF +๐ฉ๐ช flag: Germany; U+1F1E9 U+1F1EA +๐ฉ๐ฌ flag: Diego Garcia; U+1F1E9 U+1F1EC +๐ฉ๐ฏ flag: Djibouti; U+1F1E9 U+1F1EF +๐ฉ๐ฐ flag: Denmark; U+1F1E9 U+1F1F0 +๐ฉ๐ฒ flag: Dominica; U+1F1E9 U+1F1F2 +๐ฉ๐ด flag: Dominican Republic; U+1F1E9 U+1F1F4 +๐ฉ๐ฟ flag: Algeria; U+1F1E9 U+1F1FF +๐ช๐ฆ flag: Ceuta & Melilla; U+1F1EA U+1F1E6 +๐ช๐จ flag: Ecuador; U+1F1EA U+1F1E8 +๐ช๐ช flag: Estonia; U+1F1EA U+1F1EA +๐ช๐ฌ flag: Egypt; U+1F1EA U+1F1EC +๐ช๐ญ flag: Western Sahara; U+1F1EA U+1F1ED +๐ช๐ท flag: Eritrea; U+1F1EA U+1F1F7 +๐ช๐ธ flag: Spain; U+1F1EA U+1F1F8 +๐ช๐น flag: Ethiopia; U+1F1EA U+1F1F9 +๐ช๐บ flag: European Union; U+1F1EA U+1F1FA +๐ซ๐ฎ flag: Finland; U+1F1EB U+1F1EE +๐ซ๐ฏ flag: Fiji; U+1F1EB U+1F1EF +๐ซ๐ฐ flag: Falkland Islands; U+1F1EB U+1F1F0 +๐ซ๐ฒ flag: Micronesia; U+1F1EB U+1F1F2 +๐ซ๐ด flag: Faroe Islands; U+1F1EB U+1F1F4 +๐ซ๐ท flag: France; U+1F1EB U+1F1F7 +๐ฌ๐ฆ flag: Gabon; U+1F1EC U+1F1E6 +๐ฌ๐ง flag: United Kingdom; U+1F1EC U+1F1E7 +๐ฌ๐ฉ flag: Grenada; U+1F1EC U+1F1E9 +๐ฌ๐ช flag: Georgia; U+1F1EC U+1F1EA +๐ฌ๐ซ flag: French Guiana; U+1F1EC U+1F1EB +๐ฌ๐ฌ flag: Guernsey; U+1F1EC U+1F1EC +๐ฌ๐ญ flag: Ghana; U+1F1EC U+1F1ED +๐ฌ๐ฎ flag: Gibraltar; U+1F1EC U+1F1EE +๐ฌ๐ฑ flag: Greenland; U+1F1EC U+1F1F1 +๐ฌ๐ฒ flag: Gambia; U+1F1EC U+1F1F2 +๐ฌ๐ณ flag: Guinea; U+1F1EC U+1F1F3 +๐ฌ๐ต flag: Guadeloupe; U+1F1EC U+1F1F5 +๐ฌ๐ถ flag: Equatorial Guinea; U+1F1EC U+1F1F6 +๐ฌ๐ท flag: Greece; U+1F1EC U+1F1F7 +๐ฌ๐ธ flag: South Georgia & South Sandwich Islands; U+1F1EC U+1F1F8 +๐ฌ๐น flag: Guatemala; U+1F1EC U+1F1F9 +๐ฌ๐บ flag: Guam; U+1F1EC U+1F1FA +๐ฌ๐ผ flag: Guinea-Bissau; U+1F1EC U+1F1FC +๐ฌ๐พ flag: Guyana; U+1F1EC U+1F1FE +๐ญ๐ฐ flag: Hong Kong SAR China; U+1F1ED U+1F1F0 +๐ญ๐ฒ flag: Heard & McDonald Islands; U+1F1ED U+1F1F2 +๐ญ๐ณ flag: Honduras; U+1F1ED U+1F1F3 +๐ญ๐ท flag: Croatia; U+1F1ED U+1F1F7 +๐ญ๐น flag: Haiti; U+1F1ED U+1F1F9 +๐ญ๐บ flag: Hungary; U+1F1ED U+1F1FA +๐ฎ๐จ flag: Canary Islands; U+1F1EE U+1F1E8 +๐ฎ๐ฉ flag: Indonesia; U+1F1EE U+1F1E9 +๐ฎ๐ช flag: Ireland; U+1F1EE U+1F1EA +๐ฎ๐ฑ flag: Israel; U+1F1EE U+1F1F1 +๐ฎ๐ฒ flag: Isle of Man; U+1F1EE U+1F1F2 +๐ฎ๐ณ flag: India; U+1F1EE U+1F1F3 +๐ฎ๐ด flag: British Indian Ocean Territory; U+1F1EE U+1F1F4 +๐ฎ๐ถ flag: Iraq; U+1F1EE U+1F1F6 +๐ฎ๐ท flag: Iran; U+1F1EE U+1F1F7 +๐ฎ๐ธ flag: Iceland; U+1F1EE U+1F1F8 +๐ฎ๐น flag: Italy; U+1F1EE U+1F1F9 +๐ฏ๐ช flag: Jersey; U+1F1EF U+1F1EA +๐ฏ๐ฒ flag: Jamaica; U+1F1EF U+1F1F2 +๐ฏ๐ด flag: Jordan; U+1F1EF U+1F1F4 +๐ฏ๐ต flag: Japan; U+1F1EF U+1F1F5 +๐ฐ๐ช flag: Kenya; U+1F1F0 U+1F1EA +๐ฐ๐ฌ flag: Kyrgyzstan; U+1F1F0 U+1F1EC +๐ฐ๐ญ flag: Cambodia; U+1F1F0 U+1F1ED +๐ฐ๐ฎ flag: Kiribati; U+1F1F0 U+1F1EE +๐ฐ๐ฒ flag: Comoros; U+1F1F0 U+1F1F2 +๐ฐ๐ณ flag: St. Kitts & Nevis; U+1F1F0 U+1F1F3 +๐ฐ๐ต flag: North Korea; U+1F1F0 U+1F1F5 +๐ฐ๐ท flag: South Korea; U+1F1F0 U+1F1F7 +๐ฐ๐ผ flag: Kuwait; U+1F1F0 U+1F1FC +๐ฐ๐พ flag: Cayman Islands; U+1F1F0 U+1F1FE +๐ฐ๐ฟ flag: Kazakhstan; U+1F1F0 U+1F1FF +๐ฑ๐ฆ flag: Laos; U+1F1F1 U+1F1E6 +๐ฑ๐ง flag: Lebanon; U+1F1F1 U+1F1E7 +๐ฑ๐จ flag: St. Lucia; U+1F1F1 U+1F1E8 +๐ฑ๐ฎ flag: Liechtenstein; U+1F1F1 U+1F1EE +๐ฑ๐ฐ flag: Sri Lanka; U+1F1F1 U+1F1F0 +๐ฑ๐ท flag: Liberia; U+1F1F1 U+1F1F7 +๐ฑ๐ธ flag: Lesotho; U+1F1F1 U+1F1F8 +๐ฑ๐น flag: Lithuania; U+1F1F1 U+1F1F9 +๐ฑ๐บ flag: Luxembourg; U+1F1F1 U+1F1FA +๐ฑ๐ป flag: Latvia; U+1F1F1 U+1F1FB +๐ฑ๐พ flag: Libya; U+1F1F1 U+1F1FE +๐ฒ๐ฆ flag: Morocco; U+1F1F2 U+1F1E6 +๐ฒ๐จ flag: Monaco; U+1F1F2 U+1F1E8 +๐ฒ๐ฉ flag: Moldova; U+1F1F2 U+1F1E9 +๐ฒ๐ช flag: Montenegro; U+1F1F2 U+1F1EA +๐ฒ๐ซ flag: St. Martin; U+1F1F2 U+1F1EB +๐ฒ๐ฌ flag: Madagascar; U+1F1F2 U+1F1EC +๐ฒ๐ญ flag: Marshall Islands; U+1F1F2 U+1F1ED +๐ฒ๐ฐ flag: Macedonia; U+1F1F2 U+1F1F0 +๐ฒ๐ฑ flag: Mali; U+1F1F2 U+1F1F1 +๐ฒ๐ฒ flag: Myanmar (Burma); U+1F1F2 U+1F1F2 +๐ฒ๐ณ flag: Mongolia; U+1F1F2 U+1F1F3 +๐ฒ๐ด flag: Macau SAR China; U+1F1F2 U+1F1F4 +๐ฒ๐ต flag: Northern Mariana Islands; U+1F1F2 U+1F1F5 +๐ฒ๐ถ flag: Martinique; U+1F1F2 U+1F1F6 +๐ฒ๐ท flag: Mauritania; U+1F1F2 U+1F1F7 +๐ฒ๐ธ flag: Montserrat; U+1F1F2 U+1F1F8 +๐ฒ๐น flag: Malta; U+1F1F2 U+1F1F9 +๐ฒ๐บ flag: Mauritius; U+1F1F2 U+1F1FA +๐ฒ๐ป flag: Maldives; U+1F1F2 U+1F1FB +๐ฒ๐ผ flag: Malawi; U+1F1F2 U+1F1FC +๐ฒ๐ฝ flag: Mexico; U+1F1F2 U+1F1FD +๐ฒ๐พ flag: Malaysia; U+1F1F2 U+1F1FE +๐ฒ๐ฟ flag: Mozambique; U+1F1F2 U+1F1FF +๐ณ๐ฆ flag: Namibia; U+1F1F3 U+1F1E6 +๐ณ๐จ flag: New Caledonia; U+1F1F3 U+1F1E8 +๐ณ๐ช flag: Niger; U+1F1F3 U+1F1EA +๐ณ๐ซ flag: Norfolk Island; U+1F1F3 U+1F1EB +๐ณ๐ฌ flag: Nigeria; U+1F1F3 U+1F1EC +๐ณ๐ฎ flag: Nicaragua; U+1F1F3 U+1F1EE +๐ณ๐ฑ flag: Netherlands; U+1F1F3 U+1F1F1 +๐ณ๐ด flag: Norway; U+1F1F3 U+1F1F4 +๐ณ๐ต flag: Nepal; U+1F1F3 U+1F1F5 +๐ณ๐ท flag: Nauru; U+1F1F3 U+1F1F7 +๐ณ๐บ flag: Niue; U+1F1F3 U+1F1FA +๐ณ๐ฟ flag: New Zealand; U+1F1F3 U+1F1FF +๐ด๐ฒ flag: Oman; U+1F1F4 U+1F1F2 +๐ต๐ฆ flag: Panama; U+1F1F5 U+1F1E6 +๐ต๐ช flag: Peru; U+1F1F5 U+1F1EA +๐ต๐ซ flag: French Polynesia; U+1F1F5 U+1F1EB +๐ต๐ฌ flag: Papua New Guinea; U+1F1F5 U+1F1EC +๐ต๐ญ flag: Philippines; U+1F1F5 U+1F1ED +๐ต๐ฐ flag: Pakistan; U+1F1F5 U+1F1F0 +๐ต๐ฑ flag: Poland; U+1F1F5 U+1F1F1 +๐ต๐ฒ flag: St. Pierre & Miquelon; U+1F1F5 U+1F1F2 +๐ต๐ณ flag: Pitcairn Islands; U+1F1F5 U+1F1F3 +๐ต๐ท flag: Puerto Rico; U+1F1F5 U+1F1F7 +๐ต๐ธ flag: Palestinian Territories; U+1F1F5 U+1F1F8 +๐ต๐น flag: Portugal; U+1F1F5 U+1F1F9 +๐ต๐ผ flag: Palau; U+1F1F5 U+1F1FC +๐ต๐พ flag: Paraguay; U+1F1F5 U+1F1FE +๐ถ๐ฆ flag: Qatar; U+1F1F6 U+1F1E6 +๐ท๐ช flag: Rรฉunion; U+1F1F7 U+1F1EA +๐ท๐ด flag: Romania; U+1F1F7 U+1F1F4 +๐ท๐ธ flag: Serbia; U+1F1F7 U+1F1F8 +๐ท๐บ flag: Russia; U+1F1F7 U+1F1FA +๐ท๐ผ flag: Rwanda; U+1F1F7 U+1F1FC +๐ธ๐ฆ flag: Saudi Arabia; U+1F1F8 U+1F1E6 +๐ธ๐ง flag: Solomon Islands; U+1F1F8 U+1F1E7 +๐ธ๐จ flag: Seychelles; U+1F1F8 U+1F1E8 +๐ธ๐ฉ flag: Sudan; U+1F1F8 U+1F1E9 +๐ธ๐ช flag: Sweden; U+1F1F8 U+1F1EA +๐ธ๐ฌ flag: Singapore; U+1F1F8 U+1F1EC +๐ธ๐ญ flag: St. Helena; U+1F1F8 U+1F1ED +๐ธ๐ฎ flag: Slovenia; U+1F1F8 U+1F1EE +๐ธ๐ฏ flag: Svalbard & Jan Mayen; U+1F1F8 U+1F1EF +๐ธ๐ฐ flag: Slovakia; U+1F1F8 U+1F1F0 +๐ธ๐ฑ flag: Sierra Leone; U+1F1F8 U+1F1F1 +๐ธ๐ฒ flag: San Marino; U+1F1F8 U+1F1F2 +๐ธ๐ณ flag: Senegal; U+1F1F8 U+1F1F3 +๐ธ๐ด flag: Somalia; U+1F1F8 U+1F1F4 +๐ธ๐ท flag: Suriname; U+1F1F8 U+1F1F7 +๐ธ๐ธ flag: South Sudan; U+1F1F8 U+1F1F8 +๐ธ๐น flag: Sรฃo Tomรฉ & Prรญncipe; U+1F1F8 U+1F1F9 +๐ธ๐ป flag: El Salvador; U+1F1F8 U+1F1FB +๐ธ๐ฝ flag: Sint Maarten; U+1F1F8 U+1F1FD +๐ธ๐พ flag: Syria; U+1F1F8 U+1F1FE +๐ธ๐ฟ flag: Swaziland; U+1F1F8 U+1F1FF +๐น๐ฆ flag: Tristan da Cunha; U+1F1F9 U+1F1E6 +๐น๐จ flag: Turks & Caicos Islands; U+1F1F9 U+1F1E8 +๐น๐ฉ flag: Chad; U+1F1F9 U+1F1E9 +๐น๐ซ flag: French Southern Territories; U+1F1F9 U+1F1EB +๐น๐ฌ flag: Togo; U+1F1F9 U+1F1EC +๐น๐ญ flag: Thailand; U+1F1F9 U+1F1ED +๐น๐ฏ flag: Tajikistan; U+1F1F9 U+1F1EF +๐น๐ฐ flag: Tokelau; U+1F1F9 U+1F1F0 +๐น๐ฑ flag: Timor-Leste; U+1F1F9 U+1F1F1 +๐น๐ฒ flag: Turkmenistan; U+1F1F9 U+1F1F2 +๐น๐ณ flag: Tunisia; U+1F1F9 U+1F1F3 +๐น๐ด flag: Tonga; U+1F1F9 U+1F1F4 +๐น๐ท flag: Turkey; U+1F1F9 U+1F1F7 +๐น๐น flag: Trinidad & Tobago; U+1F1F9 U+1F1F9 +๐น๐ป flag: Tuvalu; U+1F1F9 U+1F1FB +๐น๐ผ flag: Taiwan; U+1F1F9 U+1F1FC +๐น๐ฟ flag: Tanzania; U+1F1F9 U+1F1FF +๐บ๐ฆ flag: Ukraine; U+1F1FA U+1F1E6 +๐บ๐ฌ flag: Uganda; U+1F1FA U+1F1EC +๐บ๐ฒ flag: U.S. Outlying Islands; U+1F1FA U+1F1F2 +๐บ๐ณ flag: United Nations; U+1F1FA U+1F1F3 +๐บ๐ธ flag: United States; U+1F1FA U+1F1F8 +๐บ๐พ flag: Uruguay; U+1F1FA U+1F1FE +๐บ๐ฟ flag: Uzbekistan; U+1F1FA U+1F1FF +๐ป๐ฆ flag: Vatican City; U+1F1FB U+1F1E6 +๐ป๐จ flag: St. Vincent & Grenadines; U+1F1FB U+1F1E8 +๐ป๐ช flag: Venezuela; U+1F1FB U+1F1EA +๐ป๐ฌ flag: British Virgin Islands; U+1F1FB U+1F1EC +๐ป๐ฎ flag: U.S. Virgin Islands; U+1F1FB U+1F1EE +๐ป๐ณ flag: Vietnam; U+1F1FB U+1F1F3 +๐ป๐บ flag: Vanuatu; U+1F1FB U+1F1FA +๐ผ๐ซ flag: Wallis & Futuna; U+1F1FC U+1F1EB +๐ผ๐ธ flag: Samoa; U+1F1FC U+1F1F8 +๐ฝ๐ฐ flag: Kosovo; U+1F1FD U+1F1F0 +๐พ๐ช flag: Yemen; U+1F1FE U+1F1EA +๐พ๐น flag: Mayotte; U+1F1FE U+1F1F9 +๐ฟ๐ฆ flag: South Africa; U+1F1FF U+1F1E6 +๐ฟ๐ฒ flag: Zambia; U+1F1FF U+1F1F2 +๐ฟ๐ผ flag: Zimbabwe; U+1F1FF U+1F1FC +๐ด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ flag: England; U+1F3F4 U+E0067 U+E0062 U+E0065 U+E006E U+E0067 U+E007F +๐ด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ flag: Scotland; U+1F3F4 U+E0067 U+E0062 U+E0073 U+E0063 U+E0074 U+E007F +๐ด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ flag: Wales; U+1F3F4 U+E0067 U+E0062 U+E0077 U+E006C U+E0073 U+E007F +( อกยฐ อส อกยฐ) lenny face; diff --git a/dotfiles/.local/share/soundalerts/mail.mp3 b/dotfiles/.local/share/soundalerts/mail.mp3 Binary files differnew file mode 100644 index 0000000..7e6812d --- /dev/null +++ b/dotfiles/.local/share/soundalerts/mail.mp3 diff --git a/dotfiles/.local/share/soundalerts/start.ogg b/dotfiles/.local/share/soundalerts/start.ogg Binary files differnew file mode 100644 index 0000000..a34ee2a --- /dev/null +++ b/dotfiles/.local/share/soundalerts/start.ogg |