mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 15:16:23 +01:00
modified rofi stuff
This commit is contained in:
parent
53af223bcc
commit
8481bc99e6
|
@ -106,7 +106,7 @@ with builtins;
|
|||
jetbrains.webstorm jetbrains.datagrip jetbrains.idea-ultimate
|
||||
jetbrains.pycharm-professional nix-prefetch-scripts audacity rustup
|
||||
easyeffects virt-manager evince direnv nix-direnv python3Full
|
||||
fzf openrgb krita gimp inkscape blender virglrenderer ddccontrol-db
|
||||
fzf openrgb krita gmic-qt-krita gimp-with-plugins inkscape-with-extensions blender virglrenderer ddccontrol-db
|
||||
glab firebird-emu
|
||||
discord
|
||||
obs-studio kdenlive
|
||||
|
|
|
@ -108,9 +108,9 @@ in with lib; {
|
|||
"${mod}+a" = "exec flameshot screen -c -p $HOME/Pictures/screenshots";
|
||||
"${mod}+t" = "exec ocr-screenshot.sh";
|
||||
# rofi fuckery
|
||||
"${mod}+d" = "exec --no-startup-id rofi -show drun";
|
||||
"${mod}+d" = "exec --no-startup-id rofi -show drun -theme ${../other/rofi-themes/applauncher.rasi}";
|
||||
"${mod}+space" = "exec --no-startup-id -show window";
|
||||
"${mod}+i" = "exec --no-startup-id rofimoji -f alchemical_symbols emojis braille_patterns box_drawing chess_symbols emoticons geometric_shapes gothic greek_extended math mathematical_alphanumeric_symbols mathematical_operators miscellaneous_symbols miscellaneous_mathematical_symbols-a miscellaneous_mathematical_symbols-b miscellaneous_symbols_and_arrows miscellaneous_symbols_and_pictographs miscellaneous_technical modi modifier_tone_letters musical_symbols nerd_font number_forms shorthand_format_controls specials variation_selectors vertical_forms -a copy";
|
||||
"${mod}+i" = "exec --no-startup-id rofimoji -f alchemical_symbols anatolian_hieroglyphs emojis braille_patterns box_drawing chess_symbols emoticons geometric_shapes gothic greek_extended math mathematical_alphanumeric_symbols mathematical_operators miscellaneous_symbols miscellaneous_mathematical_symbols-a miscellaneous_mathematical_symbols-b miscellaneous_symbols_and_arrows miscellaneous_symbols_and_pictographs miscellaneous_technical modi modifier_tone_letters musical_symbols nerd_font number_forms shorthand_format_controls specials variation_selectors vertical_forms -a copy";
|
||||
"${mod}+Shift+e" = "exec --no-startup-id desktop-ctl.sh";
|
||||
"${mod}+m" = "exec --no-startup-id menu-qalc";
|
||||
|
||||
|
|
78
other/rofi-themes/applauncher.rasi
Normal file
78
other/rofi-themes/applauncher.rasi
Normal file
|
@ -0,0 +1,78 @@
|
|||
* {
|
||||
background-color: #282828;
|
||||
text-color: #ebdbb2;
|
||||
}
|
||||
|
||||
|
||||
window {
|
||||
width: 1024px;
|
||||
background-color: #1d2021;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
spacing: 0px;
|
||||
children: [inputbar,listview];
|
||||
}
|
||||
|
||||
element {
|
||||
background: #1d2021;
|
||||
children: [ element-icon, element-text ];
|
||||
}
|
||||
element,element-text,element-icon, button {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
margin: 0px 0px 0.5em 0em;
|
||||
spacing: 0.4em;
|
||||
background-color: #1d2021;
|
||||
children: [entry,overlay];
|
||||
}
|
||||
|
||||
listview, inputbar, message {
|
||||
columns: 5;
|
||||
lines: 3;
|
||||
}
|
||||
|
||||
listview {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
|
||||
element {
|
||||
border: 0;
|
||||
padding: 10px;
|
||||
font: "Mono 8";
|
||||
orientation: vertical;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
padding: 1.5em 1.5em 0.5em;
|
||||
size: 4.5em;
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: #1d2021;
|
||||
}
|
||||
|
||||
element-text {
|
||||
padding: 0 0 7px 0;
|
||||
}
|
||||
|
||||
element-text selected, element-icon selected {
|
||||
background-color: #1d2021;
|
||||
}
|
||||
|
||||
element-text, element-icon {
|
||||
font-size: 2em;
|
||||
font: "Montserrat";
|
||||
horizontal-align: 0.5;
|
||||
}
|
||||
|
||||
entry {
|
||||
padding: 15px;
|
||||
background-color: #1d2021;
|
||||
}
|
||||
|
Loading…
Reference in a new issue