mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 10:39:41 +00:00
12 lines
429 B
Bash
Executable file
12 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
|