mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 04:09:23 +00:00

* Change launcher from wofi -> walker
* Add migration
* More wofi -> walker locations
* Add rose pine theme
* Rename refresh script
* Minor improvements to walker + add uwsm
* Back out running as service
* Make these executable
* Add plugins dir for now to resolve open issue 355 from v0.13.0 release
* Replace pavucontrol with wiremix (#225)
Add to install
* Revert "Replace pavucontrol with wiremix (#225)"
This reverts commit 620b397859
.
* Fix reference
* Add libqalculate so calc works out of the box
* Actually add libqalculate
* Re-add media
* Add catppuccin-latte
* Final cleanup
* Remove partially baked theme
* Remove failing migration
* Remove failing migration
* Fix refresh script
* Simplify css setup
* Rearrange walker theme files
* Change theme name
* Remove unnecessary file
* Clear everything
* Only worry about the config file now
* Disable load in animation for walker
* Run walker as service
* Make sure we have fresh package db
* Add keybindings theme
* Remove history
* Explain section
* Assume wofi is gone, only run if walker isn't there
* Move as the latest
---------
Co-authored-by: David Heinemeier Hansson <david@hey.com>
Co-authored-by: Roeland <roel4d@webding.org>
167 lines
1.9 KiB
CSS
167 lines
1.9 KiB
CSS
@import url("file://~/.config/omarchy/current/theme/walker.css");
|
|
|
|
/* Reset all elements */
|
|
#window,
|
|
#box,
|
|
#search,
|
|
#password,
|
|
#input,
|
|
#prompt,
|
|
#clear,
|
|
#typeahead,
|
|
#list,
|
|
child,
|
|
scrollbar,
|
|
slider,
|
|
#item,
|
|
#text,
|
|
#label,
|
|
#sub,
|
|
#activationlabel {
|
|
all: unset;
|
|
}
|
|
|
|
* {
|
|
font-family: 'CaskaydiaMono Nerd Font', monospace;
|
|
font-size: 18px;
|
|
}
|
|
|
|
/* Window */
|
|
#window {
|
|
background: transparent;
|
|
color: @text;
|
|
}
|
|
|
|
/* Main box container */
|
|
#box {
|
|
background: alpha(@base, 0.95);
|
|
padding: 20px;
|
|
border: 2px solid @border;
|
|
border-radius: 0px;
|
|
}
|
|
|
|
/* Search container */
|
|
#search {
|
|
background: @base;
|
|
padding: 10px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* Hide prompt icon */
|
|
#prompt {
|
|
opacity: 0;
|
|
min-width: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
/* Hide clear button */
|
|
#clear {
|
|
opacity: 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
/* Input field */
|
|
#input {
|
|
background: none;
|
|
color: @text;
|
|
padding: 0;
|
|
}
|
|
|
|
#input placeholder {
|
|
opacity: 0.5;
|
|
color: @text;
|
|
}
|
|
|
|
/* Hide typeahead */
|
|
#typeahead {
|
|
opacity: 0;
|
|
}
|
|
|
|
/* List */
|
|
#list {
|
|
background: transparent;
|
|
}
|
|
|
|
/* List items */
|
|
child {
|
|
padding: 0px 12px;
|
|
background: transparent;
|
|
border-radius: 0;
|
|
}
|
|
|
|
child:selected,
|
|
child:hover {
|
|
background: transparent;
|
|
}
|
|
|
|
/* Item layout */
|
|
#item {
|
|
padding: 0;
|
|
}
|
|
|
|
/* Icon */
|
|
#icon {
|
|
margin-right: 10px;
|
|
-gtk-icon-transform: scale(0.7);
|
|
}
|
|
|
|
/* Text */
|
|
#text {
|
|
color: @text;
|
|
padding: 14px 0;
|
|
}
|
|
|
|
#label {
|
|
font-weight: normal;
|
|
}
|
|
|
|
/* Selected state */
|
|
child:selected #text,
|
|
child:selected #label,
|
|
child:hover #text,
|
|
child:hover #label {
|
|
color: @selected-text;
|
|
}
|
|
|
|
/* Hide sub text */
|
|
#sub {
|
|
opacity: 0;
|
|
font-size: 0;
|
|
min-height: 0;
|
|
}
|
|
|
|
/* Hide activation label */
|
|
#activationlabel {
|
|
opacity: 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
/* Scrollbar styling */
|
|
scrollbar {
|
|
opacity: 0;
|
|
}
|
|
|
|
/* Hide spinner */
|
|
#spinner {
|
|
opacity: 0;
|
|
}
|
|
|
|
/* Hide AI elements */
|
|
#aiScroll,
|
|
#aiList,
|
|
.aiItem {
|
|
opacity: 0;
|
|
min-height: 0;
|
|
}
|
|
|
|
/* Bar entry (switcher) */
|
|
#bar {
|
|
opacity: 0;
|
|
min-height: 0;
|
|
}
|
|
|
|
.barentry {
|
|
opacity: 0;
|
|
}
|
|
|