Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | desktop-entry: drop Terminal=true from nnn and nvim for now | sinanmohd | 2023-07-09 | 2 | -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 linkhandler | sinanmohd | 2023-07-08 | 1 | -0/+11 |
| | |||||
* | desktop-entry: initial commit, make use of ttyasrt | sinanmohd | 2023-07-08 | 2 | -0/+103 |
| | |||||
* | gnupg: initial commit | sinanmohd | 2023-07-02 | 1 | -0/+1 |
| | |||||
* | font: add missing unicode hex for font awesome | sinanmohd | 2023-04-04 | 1 | -1605/+1605 |
| | |||||
* | font: import nerd font data for sds/dunicode | sinanmohd | 2023-04-04 | 1 | -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 voidrice | sinanmohd | 2023-03-20 | 1 | -0/+1630 |
| | |||||
* | font: switch to font awesome for fonts | sinanmohd | 2023-03-20 | 1 | -0/+1605 |