summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* nvim: init.lua, initial commitsinanmohd2023-04-051-0/+426
|
* 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
* sh: clean: uniform shell expansion syntaxsinanmohd2023-04-042-23/+24
|
* wayland/winit: initial commitsinanmohd2023-04-011-0/+21
|
* c: initial commit: basic skelton for c programmingsinanmohd2023-03-261-0/+11
|
* livevm: shorter livem <cdrom> cmdsinanmohd2023-03-231-0/+6
|
* fix : livevm: wrong path to create qcow2 img, get rid of die, dont cat to grepsinanmohd2023-03-231-4/+4
|
* font: import emojis from voidricesinanmohd2023-03-201-0/+1630
|
* font: switch to font awesome for fontssinanmohd2023-03-204-2/+1608
|
* mako: increase window heightsinanmohd2023-03-181-0/+1
|
* livevm: initial commit: a wrapper for qemusinanmohd2023-03-181-0/+61
|
* profile: use daskpass as SUDO_ASKPASSsinanmohd2023-03-171-1/+1
|
* audio_cyclesink: don't do anything if only one sink is availablesinanmohd2023-03-171-8/+13
|
* audio_cyclesink, audio_mutemic: initial commitsinanmohd2023-03-172-0/+92
| | | | mute mic and cycle between wireplumber(pipewire) audio sinks
* repo: add sds modulesinanmohd2023-03-162-0/+3
|
* bin: linkhandler: import from old dot filessinanmohd2023-03-111-0/+37
|
* rtorrent: initial setupsinanmohd2023-03-111-0/+118
|
* fontconfig, irssi, mako, zathura: initial setupsinanmohd2023-03-114-0/+398
|
* mpv: initial configsinanmohd2023-03-101-0/+23
|
* shell: initial shell setupsinanmohd2023-03-103-0/+79