adjusted some stuff regarding a hyplang bug (moved a bunch single line commands into their own script files)
parent
219aeab974
commit
4aa870ebac
|
|
@ -9,7 +9,6 @@ $terminal = kitty
|
||||||
$fileManager = kitty -e yazi
|
$fileManager = kitty -e yazi
|
||||||
$editor = kitty micro
|
$editor = kitty micro
|
||||||
$menu = wofi --show=drun
|
$menu = wofi --show=drun
|
||||||
$winswitch = hyprctl dispatch focuswindow address:"$(hyprctl -j clients | jq 'map("\(.workspace.id) ∴ \(.workspace.name) ┇ \(.title) ┇ \(.address)")' | sed "s/,$//; s/^\[//; s/^\]//; s/^[[:blank:]]*//; s/^\"//; s/\"$//" | grep -v "^$" | wofi -dO alphabetical | grep -o "0x.*$")"
|
|
||||||
|
|
||||||
####################
|
####################
|
||||||
### KEYBINDINGSS ###
|
### KEYBINDINGSS ###
|
||||||
|
|
@ -216,8 +215,8 @@ bind = $mainMod, Y, changegroupactive, b
|
||||||
bind = $mainMod SHIFT, Q, exec, hyprctl kill
|
bind = $mainMod SHIFT, Q, exec, hyprctl kill
|
||||||
|
|
||||||
#screenshot capture
|
#screenshot capture
|
||||||
bind = , Print, exec, grim -g "$(slurp -d)" - | wl-copy
|
bind = , Print, exec, ~/.config/hypr/scripts/screenshot.sh
|
||||||
bind = $mainMod, P, exec, grim -g "$(slurp -d)" - | wl-copy
|
bind = $mainMod, P, exec, ~/.config/hypr/scripts/screenshot.sh
|
||||||
|
|
||||||
#audio controls
|
#audio controls
|
||||||
binde =, XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.4 @DEFAULT_AUDIO_SINK@ 5%+
|
binde =, XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.4 @DEFAULT_AUDIO_SINK@ 5%+
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ $menu = wofi --show=drun
|
||||||
# Autostart necessary processes (like notifications daemons, status bars, etc.)
|
# Autostart necessary processes (like notifications daemons, status bars, etc.)
|
||||||
# Or execute your favorite apps at launch like this:
|
# Or execute your favorite apps at launch like this:
|
||||||
|
|
||||||
exec-once=bash ~/.config/hypr/ewwstart.sh
|
exec-once=bash ~/.config/hypr/scripts/ewwstart.sh
|
||||||
|
|
||||||
#exec-once = waybar
|
#exec-once = waybar
|
||||||
exec-once = dunst
|
exec-once = dunst
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ input-field {
|
||||||
|
|
||||||
# DATE
|
# DATE
|
||||||
label {
|
label {
|
||||||
text = cmd[update:18000000] echo "<b> "$(date +'%A, %-d %B %Y')" </b>"
|
text = cmd[update:18000000] sh ~/.config/hypr/scripts/date.sh
|
||||||
color = rgb(5018dd)
|
color = rgb(5018dd)
|
||||||
font_size = 34
|
font_size = 34
|
||||||
font_family = Agave Nerd Font Mono
|
font_family = Agave Nerd Font Mono
|
||||||
|
|
@ -56,7 +56,7 @@ label {
|
||||||
|
|
||||||
# TIME
|
# TIME
|
||||||
label {
|
label {
|
||||||
text = cmd[update:1000] echo "<b><big> $(date +"%H:%M:%S") </big></b>"
|
text = cmd[update:1000] sh ~/.config/hypr/scripts/time.sh
|
||||||
color = rgb(E40046)
|
color = rgb(E40046)
|
||||||
font_size = 94
|
font_size = 94
|
||||||
font_family = Agave Nerd Font Mono
|
font_family = Agave Nerd Font Mono
|
||||||
|
|
@ -78,7 +78,7 @@ label {
|
||||||
|
|
||||||
# UPTIME
|
# UPTIME
|
||||||
label {
|
label {
|
||||||
text = cmd[update:60000] echo "<b> "$(uptime -p || $Scripts/UptimeNixOS.sh)" </b>"
|
text = cmd[update:60000] sh ~/.config/hypr/scripts/uptime.sh
|
||||||
font_size = 24
|
font_size = 24
|
||||||
color = rgb(5018dd)
|
color = rgb(5018dd)
|
||||||
font_family = Agave Nerd Font Mono
|
font_family = Agave Nerd Font Mono
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/bash
|
||||||
|
echo "<b> "$(date +'%A, %-d %B %Y')" </b>"
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
grim -g "$(slurp -d)" - | wl-copy
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/bash
|
||||||
|
echo "<b><big> $(date +"%H:%M:%S") </big></b>"
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/bash
|
||||||
|
uptime -p
|
||||||
Loading…
Reference in New Issue