Compare commits

..

No commits in common. "edcc4db0c728591845c573ad8d943f906ec8f3fe" and "3013b531d73fc70eb0981a9041932fc0b0177878" have entirely different histories.

11 changed files with 11 additions and 59 deletions

View file

@ -17,12 +17,10 @@ source = ~/.config/hypr/windowrules.conf
# Exec once
exec-once = artix-pipewire-launcher restart
exec-once = artix-pipewire-launcher
exec-once = nm-applet
exec-once = /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
exec-once = $HOME/.scripts/swayidle.sh
exec-once = swayosd-server
# XWayland
exec-once = xprop -root -f _XWAYLAND_GLOBAL_OUTPUT_SCALE 32c -set _XWAYLAND_GLOBAL_OUTPUT_SCALE 2

View file

@ -8,7 +8,7 @@ binde = $mainMod_SHIFT, V, togglesplit,
bind = $mainMod, L, exec, $HOME/.scripts/swaylock.sh
bind = $mainMod, F, fullscreen
bind = $mainMod_SHIFT, N, exec, $HOME/.scripts/waybar-dnd-toggle.sh; pkill -SIGRTMIN+2 waybar
bind = $mainMod_SHIFT, N, exec, swaync-client -t -sw
bind = $mainMod, R, exec, wofi --show run
bind = $mainMod, E, exec, thunar
binde = $mainMod_SHIFT, T, exec, kitty

View file

@ -6,6 +6,3 @@ border-radius=4
border-size=2
font='JetBrainsMono Nerd Font' 11
outer-margin=30,30,0,0
[mode=dnd]
invisible=1

View file

@ -20,8 +20,7 @@
"memory",
"custom/cpu-temp",
"cpu",
"clock",
"custom/dnd-toggle"
"clock"
],
"hyprland/workspaces": {
@ -134,9 +133,8 @@
"format-time": "{H}:{m}",
"format": "{icon} {capacity}% ({time})",
"format-icons": ["󰂎", "󰁺", "󰁻", "󰁼", "󰁽", "󰁾", "󰁿", "󰂀", "󰂁", "󰂂", "󰁹"],
"format-plugged": "󰂄 {capacity}% ({time})",
"format-full": "{icon} {capacity}%",
"format-charging-100": "󰂅 {capacity}%",
"format-plugged": "󰂄 {capacity}%",
"format-charging-100": "󰂅 {capacity}% ({time})",
"format-charging-90": "󰂋 {capacity}% ({time})",
"format-charging-80": "󰂊 {capacity}% ({time})",
"format-charging-70": "󰢞 {capacity}% ({time})",
@ -199,18 +197,5 @@
"today": "<span color='#ff6699'><b>{}</b></span>"
}
}
},
"custom/dnd-toggle": {
"exec": "$HOME/.scripts/waybar-dnd-toggle.sh --no-toggle",
"interval": "once",
"on-click": "$HOME/.scripts/waybar-dnd-toggle.sh; pkill -SIGRTMIN+2 waybar",
"signal": 2,
"tooltip": false,
"return-type": "json",
"format": "{icon} {}",
"format-icons": {
"dnd-enabled": "󰂛",
"dnd-disabled": "󰂚"
}
}
}

View file

@ -78,8 +78,7 @@
#custom-gpu-temp,
#custom-gpu-usage,
#custom-cpu-temp,
#cpu,
#custom-dnd-toggle.dnd-disabled {
#cpu {
color: @accent1;
}
@ -93,8 +92,7 @@
}
#pulseaudio.output.muted,
#pulseaudio.input.source-muted,
#custom-dnd-toggle.dnd-enabled {
#pulseaudio.input.source-muted {
color: @disabled;
}

View file

@ -7,7 +7,6 @@ alias ssh="TERM=xterm-256color ssh"
#alias ssh="TERM=xterm-256color kitty +kitten ssh"
alias ff="fastfetch"
alias ip="ip --color=auto"
alias hx="helix"
alias wget='wget --hsts-file="$XDG_CACHE_HOME/wget-hsts"'

View file

@ -1,6 +1,3 @@
pkill -u "$USER" -9 ssh-agent
wl-copy -c
cliphist wipe
pkill -u "$USER" -9 ssh-agent
pkill -u "$USER" -9 pipewire
pkill -u "$USER" -9 dbus-daemon
killall -u "$USER" -9 kill-wine-explorer.sh

View file

@ -20,7 +20,7 @@ printenv SSH_TTY &> /dev/null || wal -R
# Autostart on TTY1:
# Hyprland on laptop
[[ "$XDG_VTNR" -eq 1 ]] && [[ "$HOST" = 'vrz-lt' ]] && dbus-run-session Hyprland
[[ "$XDG_VTNR" -eq 1 ]] && [[ "$HOST" = 'vrz-lt' ]] && exec dbus-run-session Hyprland
# Plasma on desktop
[[ "$XDG_VTNR" -eq 1 ]] && [[ "$HOST" = 'vrz-dt' ]] && startx

View file

@ -1,6 +1,6 @@
#!/bin/sh
while true; do
killall -9 explorer.exe &> /dev/null
killall -9 explorer.exe
sleep 5
done

View file

@ -326,7 +326,7 @@ else
echo "Reloading Mako."
makoctl reload &
else
echo "Starting mako."
echo "Starting Mako."
hyprctl dispatch exec mako > /dev/null &
fi
fi

View file

@ -1,22 +0,0 @@
#!/bin/sh
if [[ "$1" != "--no-toggle" ]]; then
if makoctl mode | grep -q dnd; then
makoctl mode -r dnd
else
makoctl mode -a dnd
fi
fi
if makoctl mode | grep -q dnd; then
class="dnd-enabled"
else
class="dnd-disabled"
fi
cat << EOF
{"text": "", "alt": "$class", "class": "$class", "percentage": ""}
EOF