Compare commits
No commits in common. "cd5ee4addb1e712f7e55ec1886a6a0984d889aa9" and "f76c0ecad880d762590a14891f0c770c60331bf4" have entirely different histories.
cd5ee4addb
...
f76c0ecad8
4 changed files with 15 additions and 3 deletions
|
|
@ -22,6 +22,11 @@
|
|||
services.minecraft-servers.servers.velocity.symlinks."velocity.toml".value = {
|
||||
servers = {
|
||||
forge-1-19-2 = "127.0.0.1:30004";
|
||||
|
||||
# In what order we should try servers when a player logs in or is kicked from a server.
|
||||
try = [
|
||||
"forge-1-19-2"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,6 +21,11 @@
|
|||
services.minecraft-servers.servers.velocity.symlinks."velocity.toml".value = {
|
||||
servers = {
|
||||
neoforge-1-21-1 = "127.0.0.1:30005";
|
||||
|
||||
# In what order we should try servers when a player logs in or is kicked from a server.
|
||||
try = [
|
||||
"neoforge-1-21-1"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ post_hook = 'sketchybar --reload'
|
|||
[templates.jankyborders]
|
||||
input_path = './templates/jankyborders.sh'
|
||||
output_path = '~/.cache/matugen-jankyborders.sh'
|
||||
post_hook = 'sh ~/.cache/matugen-jankyborders.sh & disown'
|
||||
post_hook = 'sh ~/.cache/matugen-jankyborders.sh'
|
||||
|
||||
[templates.zsh]
|
||||
input_path = './templates/zsh.sh'
|
||||
|
|
|
|||
|
|
@ -3,7 +3,9 @@
|
|||
killall borders
|
||||
|
||||
if [ "{{ rounding }}" = 0 ]; then
|
||||
exec borders active_color=0xFF{{colors.primary.default.hex_stripped}} inactive_color=0xFF{{colors.background.default.hex_stripped}} width=6.0 style=square
|
||||
nohup borders active_color=0xFF{{colors.primary.default.hex_stripped}} inactive_color=0xFF{{colors.background.default.hex_stripped}} width=6.0 style=square > /dev/null &
|
||||
else
|
||||
exec borders active_color=0xFF{{colors.primary.default.hex_stripped}} inactive_color=0xFF{{colors.background.default.hex_stripped}} width=6.0 style=round
|
||||
nohup borders active_color=0xFF{{colors.primary.default.hex_stripped}} inactive_color=0xFF{{colors.background.default.hex_stripped}} width=6.0 style=round > /dev/null &
|
||||
fi
|
||||
|
||||
exit
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue