This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- /etc/grub.d/10_linux | |
+++ /etc/grub.d/10_linux | |
@@ -144,7 +144,7 @@ | |
fi | |
printf '%s\n' "${prepare_boot_cache}" | sed "s/^/$submenu_indentation/" | |
fi | |
- message="$(gettext_printf "Loading Linux %s ..." ${version})" | |
+ message="$(gettext_printf "Loading Linux %s ..." ${display_version})" | |
sed "s/^/$submenu_indentation/" << EOF | |
echo '$(echo "$message" | grub_quote)' |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# https://jupyter-docker-stacks.readthedocs.io/en/latest/index.html | |
# https://docs.docker.com/reference/cli/docker/container/exec/ | |
systemctl is-active --quiet docker || systemctl start docker | |
systemctl is-active --quiet containerd || systemctl start containerd | |
PORT=8888 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph G { | |
node [ shape=box ]; | |
compound=true; | |
subgraph cluster_objetos { | |
rankdir=same | |
node [ shape=box, style=filled, fillcolor=white ]; | |
C [ label="Barrio" ]; | |
D [ label="Parada" ]; | |
label="Objetos"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit a6d41f067eb1bc64eb5d721df4d2880c457fe82a | |
Author: mjkloeckner <[email protected]> | |
Date: Sat Apr 15 21:09:02 2023 -0300 | |
flaotrules relative to monitor size | |
floatrules now accepts a new option which is `isrel` in case of being 1 | |
the floatx, floaty, floatw, floath can be specified in terms of the | |
percentage of the monitor with floating values in the range 0.00 - 1.00, | |
being 0.00: 0% and 1.00: 100%, 0.50: 50%, etc. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function VerboseMark() | |
echo '' | |
let c = nr2char(getchar()) | |
exe "mark" c | |
echon "created mark '" c "' at line " line(".") | |
endfunction | |
nnoremap m :call VerboseMark()<CR> |