configured ulauncher

main
The_miro 2025-07-06 02:01:10 +02:00
parent 676c35b1f1
commit 322fa01761
6 changed files with 172 additions and 1 deletions

View File

@ -37,6 +37,7 @@ bind = $mainMod, Z, exec, ~/Dotfiles/desktopenvs/hyprland/scripts/togglebar.sh
bind = $mainMod, Q, killactive,
bind = $mainMod, M, exec, $editor
bind = $mainMod, E, exec, $fileManager
bind = $mainMod, X, exec, wofi --show=run
bind = $mainMod, F, exec, ~/Dotfiles/desktopenvs/hyprland/scripts/wofi-file-search.sh
bind = $mainMod SHIFT, F, exec, ~/Dotfiles/desktopenvs/hyprland/scripts/foldersearch.sh
bind = $mainMod ALT, F, exec, wofi-calc

View File

@ -85,3 +85,13 @@ windowrulev2 = noblur, class:dev.benz.walker
windowrulev2 = noshadow, class:dev.benz.walker
windowrulev2 = noborder, class:dev.benz.walker
windowrulev2 = float, class:dev.benz.walker
windowrulev2 = float, class:ulauncher
windowrulev2 = pin, class:ulauncher
windowrulev2 = center, class:ulauncher
windowrulev2 = stayfocused, class:ulauncher
windowrulev2 = minsize 180% 170%, class:ulauncher
windowrulev2 = noblur, class:ulauncher
windowrulev2 = noshadow, class:ulauncher
windowrulev2 = noborder, class:ulauncher
windowrulev2 = float, class:ulauncher

View File

@ -8,5 +8,5 @@
"show-indicator-icon": true,
"show-recent-apps": "5",
"terminal-command": "",
"theme-name": "ubuntu"
"theme-name": "cyberqueer"
}

View File

@ -0,0 +1,75 @@
@import url("/home/themiro/.cache/ulauncher_cache/themes/dark/generated.css");
* {
font-family: Agave Nerd Font Mono, Arial, sans-serif;
border-radius: 60px;
}
.app {
background-color: #1a1a1a;
border: 4px solid #E40046;
padding: 9px;
border-radius: 60px;
}
.input {
font-size: 170%;
padding: 10px 0 10px 7px;
color: #E40046;
}
/**
* Selected text in input
*/
.input *:selected,
.input *:focus,
*:selected:focus {
color: #E40046;
}
.item-text {
color: #d6abab;
}
.item-name {
font-size: 120%;
color: #5018dd;
}
.item-highlight {
color: #5018dd;
}
/* Small result item */
.small-result-item .item-name {
font-size: 100%;
}
.item-descr {
font-size: 80%;
}
.selected.item-box {
background-color: alpha(#5018dd, 0.7);
border: 4px solid #E40046;
}
.selected.item-box .item-text {
color: #d6abab;
}
.selected.item-box .item-name {
color: #d6abab;
}
.selected.item-box .item-highlight {
color: #5018dd;
}
.item-shortcut {
color: #E40046;
}
.selected.item-box .item-shortcut {
color: #E40046;
}
.prefs-btn {
border-radius: 12px;
opacity: 0.8;
}
.prefs-btn:hover {
background-color: alpha(#5018dd, 0.7);
}

View File

@ -0,0 +1,12 @@
{
"manifest_version": "1",
"name": "cyberqueer",
"display_name": "cyberqueer",
"extend_theme": "dark",
"css_file": "theme.css",
"css_file_gtk_3.20+": "theme.css",
"matched_text_hl_colors": {
"when_selected": "#E40046",
"when_not_selected": "#d6abab"
}
}

View File

@ -0,0 +1,73 @@
* {
font-family: Agave Nerd Font Mono, Arial, sans-serif;
border-radius: 60px;
}
.app {
background-color: #1a1a1a;
border: 4px solid #E40046;
padding: 9px;
border-radius: 60px;
}
.input {
font-size: 170%;
padding: 10px 0 10px 7px;
color: #E40046;
}
/**
* Selected text in input
*/
.input *:selected,
.input *:focus,
*:selected:focus {
color: #E40046;
}
.item-text {
color: #d6abab;
}
.item-name {
font-size: 120%;
color: #5018dd;
}
.item-highlight {
color: #5018dd;
}
/* Small result item */
.small-result-item .item-name {
font-size: 100%;
}
.item-descr {
font-size: 80%;
}
.selected.item-box {
background-color: alpha(#5018dd, 0.7);
border: 4px solid #E40046;
}
.selected.item-box .item-text {
color: #d6abab;
}
.selected.item-box .item-name {
color: #d6abab;
}
.selected.item-box .item-highlight {
color: #5018dd;
}
.item-shortcut {
color: #E40046;
}
.selected.item-box .item-shortcut {
color: #E40046;
}
.prefs-btn {
border-radius: 12px;
opacity: 0.8;
}
.prefs-btn:hover {
background-color: alpha(#5018dd, 0.7);
}