summaryrefslogtreecommitdiff
path: root/.local/share
Commit message (Collapse)AuthorAgeFilesLines
* desktop-entry: drop Terminal=true from nnn and nvim for nowsinanmohd2023-07-092-2/+0
| | | | | | | | | | due to a upstream bug affecting gtk programs when Terminal=true is set they try to launch the hardcoded /usr/bin/gnome-terminal and fail if it's not installed, this also affects firefox. maybe cheking the $TERMINAL environment variable might be better!!!. https://gitlab.com/mobian1/issues/-/issues/392 https://unix.stackexchange.com/questions/707469/error-with-gtk-launch-unable-to-find-terminal-required-for-application
* desktop-entry: add entry for linkhandlersinanmohd2023-07-081-0/+11
|
* desktop-entry: initial commit, make use of ttyasrtsinanmohd2023-07-082-0/+103
|
* gnupg: initial commitsinanmohd2023-07-021-0/+1
|
* font: add missing unicode hex for font awesomesinanmohd2023-04-041-1605/+1605
|
* font: import nerd font data for sds/dunicodesinanmohd2023-04-041-0/+9116
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the following script was used to scrap the data off of nerd font website set -e nerd_sheet="https://www.nerdfonts.com/cheat-sheet" get_nerd() { curl --silent -H 'Accept-Encoding: gzip,deflate, br' --compressed "$nerd_sheet" } parse() { name= obs= while IFS="$(printf '\n')" read -r line do case "$line" in *obsolete*) obs=true ;; *"div class=\"nf "*) [ "$obs" = true ] && continue line="${line#*nf }" name="${line%% *}" ;; *"Copy Hex Code to Clipboard"*) if [ "$obs" = true ]; then obs=false continue fi line="${line%<*}" line="${line##*>}" printf "%b %s %s\n" "\U${line}" "$name" "$line" ;; *) continue ;; esac done unset name } get_nerd | parse
* font: import emojis from voidricesinanmohd2023-03-201-0/+1630
|
* font: switch to font awesome for fontssinanmohd2023-03-201-0/+1605