mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2025-03-12 02:18:57 +00:00
11 lines
429 B
Bash
Executable file
11 lines
429 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# export SDL_VIDEODRIVER=wayland
|
|
# export _JAVA_AWT_WM_NONREPARENTING=1
|
|
# export QT_QPA_PLATFORM=wayland
|
|
# export XDG_CURRENT_DESKTOP=sway
|
|
# export XDG_SESSION_DESKTOP=sway
|
|
|
|
echo "---------- NEW RUN $(date) ----------" >> ~/.hyprlog.txt
|
|
Hyprland 2>&1 | awk '{ print strftime("%s: "), $0, fflush(); }' | tee -a "${XDG_CACHE_HOME:-$HOME/.cache}/.hyprlog.txt"
|
|
echo "---------- ENDED $(date) ----------" >> ~/.hyprlog.txt
|