Regenerated
This commit is contained in:
+384
-363
File diff suppressed because it is too large
Load Diff
+39
-47
@@ -924,6 +924,8 @@ These are config files for .config/wofi
|
|||||||
[global]
|
[global]
|
||||||
allow_images = true
|
allow_images = true
|
||||||
allow_markup = true
|
allow_markup = true
|
||||||
|
|
||||||
|
# Which modes are active
|
||||||
show_drun = true:apps,false:others
|
show_drun = true:apps,false:others
|
||||||
show_run = true
|
show_run = true
|
||||||
show_files = false
|
show_files = false
|
||||||
@@ -932,11 +934,11 @@ show_dmenu = false
|
|||||||
show_ssh = false
|
show_ssh = false
|
||||||
show_power = false
|
show_power = false
|
||||||
|
|
||||||
|
# Layout / scrolling
|
||||||
width = 800
|
width = 800
|
||||||
height = 600
|
height = 600
|
||||||
# Center on the active monitor
|
location = center
|
||||||
location=center
|
anchor = center
|
||||||
anchor=center
|
|
||||||
|
|
||||||
lines = 10
|
lines = 10
|
||||||
columns = 1
|
columns = 1
|
||||||
@@ -948,6 +950,8 @@ scroll_step = 10
|
|||||||
cycle = true
|
cycle = true
|
||||||
hide_scroll = false
|
hide_scroll = false
|
||||||
hide_search = false
|
hide_search = false
|
||||||
|
|
||||||
|
# Labels
|
||||||
show_labels = true
|
show_labels = true
|
||||||
label_search = true
|
label_search = true
|
||||||
label_run = Run
|
label_run = Run
|
||||||
@@ -967,20 +971,25 @@ These are config files for .config/wofi
|
|||||||
|
|
||||||
@import url("file:///home/henrov/.config/shared/colors.css");
|
@import url("file:///home/henrov/.config/shared/colors.css");
|
||||||
|
|
||||||
/* Global styles */
|
/* --- Global --- */
|
||||||
* {
|
* {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
color: @text;
|
color: @text;
|
||||||
font-family: "JetBrainsMono Nerd Font", monospace;
|
font-family: "JetBrainsMono Nerd Font", monospace;
|
||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Main menu container with gradient border */
|
/* ------------------------ */
|
||||||
#main {
|
/* MAIN MENU / DRUN / DMENU */
|
||||||
|
/* ------------------------ */
|
||||||
|
#main,
|
||||||
|
#dmenu {
|
||||||
|
width: 800px;
|
||||||
|
height: 600px;
|
||||||
background:
|
background:
|
||||||
linear-gradient(@base-alpha, @base-alpha) padding-box, /* Inner fill */
|
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
||||||
linear-gradient(45deg, @blue, @green) border-box; /* Gradient border */
|
linear-gradient(45deg, @blue, @green) border-box;
|
||||||
border: 2px solid transparent; /* Required for border-box layering */
|
border: 2px solid transparent;
|
||||||
border-radius: 30px;
|
border-radius: 30px;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
||||||
@@ -996,18 +1005,21 @@ These are config files for .config/wofi
|
|||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Entries */
|
/* Entries / list items */
|
||||||
#entry {
|
#entry,
|
||||||
|
.app-icon {
|
||||||
background-color: rgba(200,200,200,0.2);
|
background-color: rgba(200,200,200,0.2);
|
||||||
color: @text;
|
color: @text;
|
||||||
border-radius: 30px;
|
border-radius: 30px;
|
||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
margin: 2px 0;
|
margin: 2px 0;
|
||||||
border: 2px solid transparent; /* needed for gradient on selection */
|
border: 2px solid transparent;
|
||||||
|
transition: all 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Entry focus (hover or typing) */
|
/* Focus / hover effect */
|
||||||
#entry:focus {
|
#entry:focus,
|
||||||
|
.app-icon:focus {
|
||||||
background:
|
background:
|
||||||
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
||||||
linear-gradient(45deg, @blue, @green) border-box;
|
linear-gradient(45deg, @blue, @green) border-box;
|
||||||
@@ -1015,8 +1027,9 @@ These are config files for .config/wofi
|
|||||||
border-radius: 30px;
|
border-radius: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Entry selection */
|
/* Selection */
|
||||||
#entry:selected {
|
#entry:selected,
|
||||||
|
.app-icon:selected {
|
||||||
background:
|
background:
|
||||||
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
||||||
linear-gradient(45deg, @blue, @green) border-box;
|
linear-gradient(45deg, @blue, @green) border-box;
|
||||||
@@ -1035,6 +1048,14 @@ These are config files for .config/wofi
|
|||||||
background-color: @blue;
|
background-color: @blue;
|
||||||
border-radius: 30px;
|
border-radius: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ------------------------ */
|
||||||
|
/* Optional: grid spacing for drun icons */
|
||||||
|
.drun-view {
|
||||||
|
gap: 10px;
|
||||||
|
justify-content: flex-start;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** =generated/modules/traveldroid/apps/zenbrowser.nix=
|
** =generated/modules/traveldroid/apps/zenbrowser.nix=
|
||||||
@@ -1837,17 +1858,6 @@ These are config files for .config/hypr
|
|||||||
#+BEGIN_SRC conf :tangle generated/.config/hypr/bindings.conf :noweb yes :mkdirp yes :eval never
|
#+BEGIN_SRC conf :tangle generated/.config/hypr/bindings.conf :noweb yes :mkdirp yes :eval never
|
||||||
$mainMod = SUPER
|
$mainMod = SUPER
|
||||||
|
|
||||||
# use walker to show exec menu
|
|
||||||
# bind = $mainMod, Space , exec, walker
|
|
||||||
# bind = $mainMod, P, pseudo
|
|
||||||
# bind = $mainMod, T, togglesplit
|
|
||||||
|
|
||||||
# grimblast
|
|
||||||
# bind = $mainMod SHIFT, P, exec, grimblast -n -f copysave active
|
|
||||||
# bind = $mainMod SHIFT, A, exec, grimblast -n -f copysave area
|
|
||||||
# bind = $mainMod ALT, P, exec, grimblast -n -f copysave output
|
|
||||||
# bind = $mainMod CTRL, P, exec, grimblast -n -f copysave screen
|
|
||||||
|
|
||||||
# Terminal / launcher / kill / reload
|
# Terminal / launcher / kill / reload
|
||||||
bind = $mainMod, E, exec, thunar
|
bind = $mainMod, E, exec, thunar
|
||||||
bind = $mainMod, RETURN, exec, kitty
|
bind = $mainMod, RETURN, exec, kitty
|
||||||
@@ -2877,24 +2887,6 @@ window#waybar {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* --------------------------------------------------------- */
|
/* --------------------------------------------------------- */
|
||||||
/* MODULES CENTER BASE */
|
|
||||||
/*
|
|
||||||
.modules-center > widget {
|
|
||||||
min-width: 80px;
|
|
||||||
color: @text;
|
|
||||||
font-weight: bold;
|
|
||||||
border-radius: 30px;
|
|
||||||
background:
|
|
||||||
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
|
||||||
linear-gradient(45deg, @blue, @green) border-box;
|
|
||||||
border: 2px solid transparent;
|
|
||||||
transition: all 0.2s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.modules-center > box + box {
|
|
||||||
margin-left: 5px;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* --- Group anchors default visible --- */
|
/* --- Group anchors default visible --- */
|
||||||
#custom-hardware-anchor,
|
#custom-hardware-anchor,
|
||||||
@@ -3081,7 +3073,7 @@ These are config files for waybar
|
|||||||
active_ws=$(hyprctl activeworkspace -j | jq -r '.id')
|
active_ws=$(hyprctl activeworkspace -j | jq -r '.id')
|
||||||
clients=$(hyprctl clients -j | jq -r \
|
clients=$(hyprctl clients -j | jq -r \
|
||||||
".[] | select(.workspace.id==$active_ws) | \"\(.address)|\(.title)\"")
|
".[] | select(.workspace.id==$active_ws) | \"\(.address)|\(.title)\"")
|
||||||
choice=$(echo "$clients" | cut -d'|' -f2 | wofi -dmenu -j -p "Windows")
|
choice=$(echo "$clients" | cut -d'|' -f2 | wofi -dmenu -j -p "Active apps")
|
||||||
[ -z "$choice" ] && exit 0
|
[ -z "$choice" ] && exit 0
|
||||||
addr=$(echo "$clients" | grep "|$choice" | head -n1 | cut -d'|' -f1)
|
addr=$(echo "$clients" | grep "|$choice" | head -n1 | cut -d'|' -f1)
|
||||||
hyprctl dispatch focuswindow address:$addr
|
hyprctl dispatch focuswindow address:$addr
|
||||||
|
|||||||
@@ -1,16 +1,5 @@
|
|||||||
$mainMod = SUPER
|
$mainMod = SUPER
|
||||||
|
|
||||||
# use walker to show exec menu
|
|
||||||
# bind = $mainMod, Space , exec, walker
|
|
||||||
# bind = $mainMod, P, pseudo
|
|
||||||
# bind = $mainMod, T, togglesplit
|
|
||||||
|
|
||||||
# grimblast
|
|
||||||
# bind = $mainMod SHIFT, P, exec, grimblast -n -f copysave active
|
|
||||||
# bind = $mainMod SHIFT, A, exec, grimblast -n -f copysave area
|
|
||||||
# bind = $mainMod ALT, P, exec, grimblast -n -f copysave output
|
|
||||||
# bind = $mainMod CTRL, P, exec, grimblast -n -f copysave screen
|
|
||||||
|
|
||||||
# Terminal / launcher / kill / reload
|
# Terminal / launcher / kill / reload
|
||||||
bind = $mainMod, E, exec, thunar
|
bind = $mainMod, E, exec, thunar
|
||||||
bind = $mainMod, RETURN, exec, kitty
|
bind = $mainMod, RETURN, exec, kitty
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
active_ws=$(hyprctl activeworkspace -j | jq -r '.id')
|
active_ws=$(hyprctl activeworkspace -j | jq -r '.id')
|
||||||
clients=$(hyprctl clients -j | jq -r \
|
clients=$(hyprctl clients -j | jq -r \
|
||||||
".[] | select(.workspace.id==$active_ws) | \"\(.address)|\(.title)\"")
|
".[] | select(.workspace.id==$active_ws) | \"\(.address)|\(.title)\"")
|
||||||
choice=$(echo "$clients" | cut -d'|' -f2 | wofi -dmenu -j -p "Windows")
|
choice=$(echo "$clients" | cut -d'|' -f2 | wofi -dmenu -j -p "Active apps")
|
||||||
[ -z "$choice" ] && exit 0
|
[ -z "$choice" ] && exit 0
|
||||||
addr=$(echo "$clients" | grep "|$choice" | head -n1 | cut -d'|' -f1)
|
addr=$(echo "$clients" | grep "|$choice" | head -n1 | cut -d'|' -f1)
|
||||||
hyprctl dispatch focuswindow address:$addr
|
hyprctl dispatch focuswindow address:$addr
|
||||||
|
|||||||
@@ -18,24 +18,6 @@ window#waybar {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* --------------------------------------------------------- */
|
/* --------------------------------------------------------- */
|
||||||
/* MODULES CENTER BASE */
|
|
||||||
/*
|
|
||||||
.modules-center > widget {
|
|
||||||
min-width: 80px;
|
|
||||||
color: @text;
|
|
||||||
font-weight: bold;
|
|
||||||
border-radius: 30px;
|
|
||||||
background:
|
|
||||||
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
|
||||||
linear-gradient(45deg, @blue, @green) border-box;
|
|
||||||
border: 2px solid transparent;
|
|
||||||
transition: all 0.2s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.modules-center > box + box {
|
|
||||||
margin-left: 5px;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* --- Group anchors default visible --- */
|
/* --- Group anchors default visible --- */
|
||||||
#custom-hardware-anchor,
|
#custom-hardware-anchor,
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
[global]
|
[global]
|
||||||
allow_images = true
|
allow_images = true
|
||||||
allow_markup = true
|
allow_markup = true
|
||||||
|
|
||||||
|
# Which modes are active
|
||||||
show_drun = true:apps,false:others
|
show_drun = true:apps,false:others
|
||||||
show_run = true
|
show_run = true
|
||||||
show_files = false
|
show_files = false
|
||||||
@@ -9,11 +11,11 @@ show_dmenu = false
|
|||||||
show_ssh = false
|
show_ssh = false
|
||||||
show_power = false
|
show_power = false
|
||||||
|
|
||||||
|
# Layout / scrolling
|
||||||
width = 800
|
width = 800
|
||||||
height = 600
|
height = 600
|
||||||
# Center on the active monitor
|
location = center
|
||||||
location=center
|
anchor = center
|
||||||
anchor=center
|
|
||||||
|
|
||||||
lines = 10
|
lines = 10
|
||||||
columns = 1
|
columns = 1
|
||||||
@@ -25,6 +27,8 @@ scroll_step = 10
|
|||||||
cycle = true
|
cycle = true
|
||||||
hide_scroll = false
|
hide_scroll = false
|
||||||
hide_search = false
|
hide_search = false
|
||||||
|
|
||||||
|
# Labels
|
||||||
show_labels = true
|
show_labels = true
|
||||||
label_search = true
|
label_search = true
|
||||||
label_run = Run
|
label_run = Run
|
||||||
|
|||||||
Reference in New Issue
Block a user