Skip to content

Instantly share code, notes, and snippets.

View 0x3b0c's full-sized avatar

Marco Cavanna 0x3b0c

  • Italy
View GitHub Profile
@0x3b0c
0x3b0c / install.sh
Created July 8, 2021 16:26
update cert and key (issued via acme.sh) directly into youtrack built.in keystore
#!/bin/sh
KEYTOOL=/opt/youtrack/internal/java/linux-x64/bin/keytool
# Get the password from /opt/youtrack/conf/internal/bundle.properties
# (additional-keystore-password field)
JKS_PASS=CHANGEIT
# Get the current alias name from keystore.jks
JKS_ALIAS=securekeystorealias
JKS_FILE=/opt/youtrack/conf/internal/keystore.jks
@0x3b0c
0x3b0c / userChrome.css
Last active February 14, 2020 11:24 — forked from dumindu/userChrome.css
/* Fixing back button in normal density */
:root:not([uidensity=compact]) #back-button {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
:root:not([uidensity=compact]) #back-button:not([disabled]):not([open]):hover > .toolbarbutton-icon {
background-color: var(--toolbarbutton-hover-background) !important;
border-radius: var(--toolbarbutton-border-radius) !important;
}