You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Meliurwen 92afae2bc7
Reimplemented using only shell builtins and more 10 time faster the retrieval of a given First Ancestor Process of a given PID in zsh's `powermeli` theme
3 years ago
.dependencies Added entries for `engrampa` (and other small additions) in `mimeapps.list` and added it to `.dependencies/apt.list` 3 years ago
.dotvenv@5402f09300 Added dotvenv submodule 3 years ago
.gedit Added gedit config 3 years ago
.mousepad Updated mousepad settings 3 years ago
.nemo Added nemo config 3 years ago
common-shells Added `mpv-pip` alias and improved mpv configuration and integration. 3 years ago
deepin-screenshot/.config/deepin Added settings to vscode and polished .Xresources 4 years ago
dunst/.config/dunst Chores: removed useless comments from dunstrc template 3 years ago
firefox/.mozilla/firefox/userprofile/chrome Uniformed indentation by 2 spaces in userChrome.css and userContent.css 3 years ago
gnome Explicitly declare Adwaita as icon theme for gtk apps 3 years ago
htop/.config/htop Added htop configuration 3 years ago
i3/.config/i3 Decreased latency in webcam script 3 years ago
icons/.icons/Adwaita-dark-custom/32x32/status volumeControl.sh refctored and added brightness control functionality which supersedes brightnessControl.sh 3 years ago
mime/.config Added entries for `engrampa` (and other small additions) in `mimeapps.list` and added it to `.dependencies/apt.list` 3 years ago
mpv/.config/mpv Moved mpv sockets to the user runtime folder defined in `XDG_RUNTIME_DIR` with a fallback to `/tmp`, also added a lua script to properly handle env variables in the mpv config for the `input-ipc-server` property 3 years ago
nano/.config/nano Fixed nano's `stripecolor` 3 years ago
picom/.config/picom Small fix for negligible but sometimes bothersome picom artifacts 3 years ago
polybar/.config/polybar Small refactor to the polybar's mpv script 3 years ago
rofi/.config/rofi Updated config and meli-adwaita-pink theme for rofi 1.7.1 3 years ago
screen Added GNU Screen with its zsh integration plugin, a simple plugin loader for zsh, a `syntax-highlighting` and `autosuggestions` zsh plugins loaded from system 3 years ago
urxvt Removed urxvt unused plugins and no longer needed `depth` parameter 3 years ago
vscode Added to vscode/codium `argv.json`, set telemetry level to off in `settings.json` and updated the README 3 years ago
x Little bit of polish to common-shells and x 3 years ago
xdg/.config Added xdg 4 years ago
zathura/.config/zathura Initial commit 4 years ago
zsh Reimplemented using only shell builtins and more 10 time faster the retrieval of a given First Ancestor Process of a given PID in zsh's `powermeli` theme 3 years ago
.gitmodules Added dotvenv submodule 3 years ago
.stow-local-ignore Added a readme, apt dependencies and kernel modules for Thinkpads 3 years ago
LICENSE Added GPLv3 license 3 years ago
README.md Added to vscode/codium `argv.json`, set telemetry level to off in `settings.json` and updated the README 3 years ago

README.md

.dotfiles

Dependencies

Install from a file list:

Note: comments and trailing comments starting with # are ignored

apt-get install $(grep -vE "^\s*#" <FILEPATH> | sed -e 's/#.*//'  | tr "\n" " ")

Kernel Modules

Add modules to the Linux kernel:

modprobe <module>

Shell

Take note of the full path of your favorurite shell:

type -a zsh

Set it as default:

chsh -s /bin/zsh

Fonts

Reload locally (~/.local/share/fonts) installed fonts:

fc-cache -f -v

Gnome settings

Dump an entire subpath of the dconf database:

dconf dump <dir_subpath_inside_db> > <settings_file>.dconf

Populate a subpath of the dconf database:

cat <settings_file>.dconf | dconf load <dir_subpath_inside_db>

VSCode/Codium

List all extensions into a file:

codium --list-extensions > codium-extensions.list

Install all the extensions listed into a file (any line that starts with # will get ignored):

cat codium-extensions.txt | grep -v '^#' | xargs -L1 codium --install-extension

Order alphabetically and format settings.json:

Note: Unfortunately there is no in-place feature available a the moment

VSC_D="vscode/.config/Code/User/" sh -c '\
    jq --sort-keys . "${VSC_D}settings.json" > "${VSC_D}settings.json.new" && \
        mv "${VSC_D}settings.json.new" "${VSC_D}settings.json"'

Order alphabetically and format argv.json:

VSC_D="vscode/.vscode/" sh -c '\
    jq --sort-keys . "${VSC_D}argv.json" > "${VSC_D}argv.json.new" && \
        mv "${VSC_D}argv.json.new" "${VSC_D}argv.json"'

Stow

stow --restow --no-folding <DIR>