mirror of
https://github.com/Ascyii/dotfiles.git
synced 2026-01-01 15:04:24 -05:00
Initial commit
This commit is contained in:
126
config/.config/walker/config.json
Normal file
126
config/.config/walker/config.json
Normal file
@@ -0,0 +1,126 @@
|
||||
{
|
||||
"activation_mode": {
|
||||
"labels": "jkl;asdf"
|
||||
},
|
||||
"as_window": false,
|
||||
"builtins": {
|
||||
"applications": {
|
||||
"actions": true,
|
||||
"context_aware": true,
|
||||
"name": "applications",
|
||||
"placeholder": "Applications",
|
||||
"prioritize_new": true,
|
||||
"refresh": true,
|
||||
"show_generic": false,
|
||||
"show_icon_when_single": true,
|
||||
"show_sub_when_single": true,
|
||||
"weight": 5
|
||||
},
|
||||
"calc": {
|
||||
"icon": "accessories-calculator",
|
||||
"min_chars": 4,
|
||||
"name": "calc",
|
||||
"placeholder": "Calculator",
|
||||
"weight": 5
|
||||
},
|
||||
"clipboard": {
|
||||
"image_height": 300,
|
||||
"max_entries": 10,
|
||||
"name": "clipboard",
|
||||
"placeholder": "Clipboard",
|
||||
"switcher_only": true,
|
||||
"weight": 5
|
||||
},
|
||||
"commands": {
|
||||
"icon": "utilities-terminal",
|
||||
"name": "commands",
|
||||
"placeholder": "Commands",
|
||||
"switcher_only": true,
|
||||
"weight": 5
|
||||
},
|
||||
"custom_commands": {
|
||||
"icon": "utilities-terminal",
|
||||
"name": "custom_commands",
|
||||
"placeholder": "Custom Commands",
|
||||
"weight": 5
|
||||
},
|
||||
"dmenu": {
|
||||
"name": "dmenu",
|
||||
"placeholder": "Dmenu",
|
||||
"switcher_only": true,
|
||||
"weight": 5
|
||||
},
|
||||
"emojis": {
|
||||
"history": true,
|
||||
"name": "emojis",
|
||||
"placeholder": "Emojis",
|
||||
"switcher_only": true,
|
||||
"typeahead": true,
|
||||
"weight": 5
|
||||
},
|
||||
"finder": {
|
||||
"concurrency": 8,
|
||||
"icon": "folder",
|
||||
"ignore_gitignore": true,
|
||||
"name": "finder",
|
||||
"placeholder": "Finder",
|
||||
"refresh": true,
|
||||
"switcher_only": true,
|
||||
"weight": 5
|
||||
},
|
||||
"runner": {
|
||||
"generic_entry": false,
|
||||
"history": true,
|
||||
"icon": "utilities-terminal",
|
||||
"name": "runner",
|
||||
"placeholder": "Runner",
|
||||
"refresh": true,
|
||||
"typeahead": true,
|
||||
"weight": 5
|
||||
},
|
||||
"ssh": {
|
||||
"history": true,
|
||||
"icon": "preferences-system-network",
|
||||
"name": "ssh",
|
||||
"placeholder": "SSH",
|
||||
"refresh": true,
|
||||
"switcher_only": true,
|
||||
"weight": 5
|
||||
},
|
||||
"switcher": {
|
||||
"name": "switcher",
|
||||
"placeholder": "Switcher",
|
||||
"prefix": "/",
|
||||
"weight": 5
|
||||
},
|
||||
"websearch": {
|
||||
"engines": [
|
||||
"google"
|
||||
],
|
||||
"icon": "applications-internet",
|
||||
"name": "websearch",
|
||||
"placeholder": "Websearch",
|
||||
"weight": 5
|
||||
},
|
||||
"windows": {
|
||||
"icon": "view-restore",
|
||||
"name": "windows",
|
||||
"placeholder": "Windows",
|
||||
"weight": 5
|
||||
}
|
||||
},
|
||||
"disable_click_to_close": false,
|
||||
"force_keyboard_focus": true,
|
||||
"list": {
|
||||
"max_entries": 50,
|
||||
"show_initial_entries": true,
|
||||
"single_click": true
|
||||
},
|
||||
"search": {
|
||||
"delay": 0,
|
||||
"force_keyboard_focus": true,
|
||||
"history": true,
|
||||
"placeholder": "Search..."
|
||||
},
|
||||
"theme": "catppuccin"
|
||||
}
|
||||
135
config/.config/walker/themes/catppuccin.css
Normal file
135
config/.config/walker/themes/catppuccin.css
Normal file
@@ -0,0 +1,135 @@
|
||||
#window,
|
||||
#box,
|
||||
#search,
|
||||
#password,
|
||||
#input,
|
||||
#typeahead,
|
||||
#spinner,
|
||||
#list,
|
||||
child,
|
||||
scrollbar,
|
||||
slider,
|
||||
#item,
|
||||
#text,
|
||||
#label,
|
||||
#sub,
|
||||
#activationlabel {
|
||||
all: unset;
|
||||
}
|
||||
|
||||
#window {
|
||||
background: none;
|
||||
}
|
||||
|
||||
#box {
|
||||
background: #303446;
|
||||
padding: 16px;
|
||||
border-radius: 8px;
|
||||
box-shadow:
|
||||
0 19px 38px rgba(0, 0, 0, 0.3),
|
||||
0 15px 12px rgba(0, 0, 0, 0.22);
|
||||
}
|
||||
|
||||
scrollbar {
|
||||
background: none;
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
||||
slider {
|
||||
min-width: 2px;
|
||||
background: #7f849c;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
#search {
|
||||
}
|
||||
|
||||
#password,
|
||||
#input,
|
||||
#typeahead {
|
||||
background: #363a4f;
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
border-radius: 0px;
|
||||
border-radius: 32px;
|
||||
color: #c6d0f5;
|
||||
padding-left: 12px;
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
#input {
|
||||
background: none;
|
||||
}
|
||||
|
||||
#input > *:first-child,
|
||||
#typeahead > *:first-child {
|
||||
color: #7f849c;
|
||||
margin-right: 7px;
|
||||
}
|
||||
|
||||
#input > *:last-child,
|
||||
#typeahead > *:last-child {
|
||||
color: #7f849c;
|
||||
}
|
||||
|
||||
#spinner {
|
||||
}
|
||||
|
||||
#typeahead {
|
||||
color: #89b4fa;
|
||||
}
|
||||
|
||||
#input placeholder {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
#list {
|
||||
}
|
||||
|
||||
child {
|
||||
border-radius: 8px;
|
||||
color: #cad3f5;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
child:selected,
|
||||
child:hover {
|
||||
background: #414559;
|
||||
box-shadow: none;
|
||||
color: #cad3f5;
|
||||
}
|
||||
|
||||
#item {
|
||||
}
|
||||
|
||||
#icon {
|
||||
}
|
||||
|
||||
#text {
|
||||
}
|
||||
|
||||
#label {
|
||||
font-weight: bold;
|
||||
color: #cad3f5;
|
||||
}
|
||||
|
||||
#sub {
|
||||
opacity: 0.5;
|
||||
color: #cad3f5;
|
||||
}
|
||||
|
||||
#activationlabel {
|
||||
opacity: 0.5;
|
||||
padding-right: 4px;
|
||||
}
|
||||
|
||||
.activation #activationlabel {
|
||||
font-weight: bold;
|
||||
color: #89b4fa;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.activation #text,
|
||||
.activation #icon,
|
||||
.activation #search {
|
||||
}
|
||||
56
config/.config/walker/themes/catppuccin.json
Normal file
56
config/.config/walker/themes/catppuccin.json
Normal file
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"ui": {
|
||||
"anchors": {
|
||||
"bottom": true,
|
||||
"left": true,
|
||||
"right": true,
|
||||
"top": true
|
||||
},
|
||||
"window": {
|
||||
"box": {
|
||||
"h_align": "center",
|
||||
"margins": {
|
||||
"bottom": 200,
|
||||
"top": 200
|
||||
},
|
||||
"orientation": "horizontal",
|
||||
"scroll": {
|
||||
"list": {
|
||||
"always_show": true,
|
||||
"item": {
|
||||
"activation_label": {
|
||||
"h_align": "end",
|
||||
"h_expand": true,
|
||||
"justify": "right",
|
||||
"x_align": 1
|
||||
},
|
||||
"icon": {
|
||||
"theme": "Papirus"
|
||||
},
|
||||
"spacing": 5,
|
||||
"text": {
|
||||
"h_align": "fill",
|
||||
"h_expand": true,
|
||||
"revert": true
|
||||
}
|
||||
},
|
||||
"max_height": 300,
|
||||
"max_width": 400,
|
||||
"min_width": 400,
|
||||
"width": 400
|
||||
},
|
||||
"overlay_scrolling": false
|
||||
},
|
||||
"search": {
|
||||
"spacing": 10,
|
||||
"v_align": "start",
|
||||
"width": 400
|
||||
},
|
||||
"spacing": 10,
|
||||
"v_align": "start"
|
||||
},
|
||||
"h_align": "fill",
|
||||
"v_align": "fill"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user