Placeholders for commands
This commit is contained in:
parent
a7d96dc25d
commit
748d826d12
20
bin/omakub-font
Executable file
20
bin/omakub-font
Executable file
@ -0,0 +1,20 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
mkdir -p ~/.local/share/fonts
|
||||||
|
|
||||||
|
# Pick a preselected font
|
||||||
|
|
||||||
|
if ! [ -f "$HOME/.local/share/fonts/CaskaydiaMonoNerdFont-Regular.ttf" ]; then
|
||||||
|
cd ~/Downloads
|
||||||
|
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v3.1.1/CascadiaMono.zip
|
||||||
|
unzip CascadiaMono.zip -d CascadiaFont
|
||||||
|
mkdir -p ~/.local/share/fonts
|
||||||
|
cp CascadiaFont/*.ttf ~/.local/share/fonts
|
||||||
|
rm -rf CascadiaMono.zip CascadiaFont
|
||||||
|
fc-cache
|
||||||
|
cd -
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Replace font = { family: X }
|
||||||
|
gsettings set org.gnome.desktop.interface monospace-font-name 'CaskaydiaMono Nerd Font 10'
|
3
bin/omakub-help
Executable file
3
bin/omakub-help
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
batcat ~/.local/share/omakub/help/hotkeys.md
|
4
bin/omakub-install
Normal file
4
bin/omakub-install
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
source ~/.local/share/omakub/install/gh.sh
|
||||||
|
source ~/.local/share/omakub/install/optional/virtualbox.sh
|
4
bin/omakub-theme
Normal file
4
bin/omakub-theme
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Pick a preconfigured theme
|
Loading…
Reference in New Issue
Block a user