forked from Shinonome/dots-hyprland
stuff
This commit is contained in:
Executable
+18
@@ -0,0 +1,18 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd ~
|
||||
|
||||
#export XDG_CURRENT_DESKTOP=GNOME
|
||||
#export XDG_SESSION_TYPE=wayland
|
||||
#export XDG_SESSION_DESKTOP=GNOME
|
||||
#export EDITOR = /usr/bin/gnome-text-editor
|
||||
|
||||
export XMODIFIERS=@im=ibus
|
||||
export GTK_IM_MODULE=ibus
|
||||
export QT_IM_MODULE=ibus
|
||||
|
||||
#export QT_QPA_PLATFORMTHEME=qt5ct #QT Theme (for KDE apps)
|
||||
export QT_QPA_PLATFORMTHEME=qt5ct
|
||||
|
||||
exec Hyprland
|
||||
|
||||
Executable
+1
@@ -0,0 +1 @@
|
||||
swaylock --image /home/end/Pictures/ACE.jpg --clock --indicator --line-color cdd6f4ff --text-color cdd6f4ff --inside-color 1e1e2eff --ring-color 313244ff --line-ver-color cdd6f4ff --text-ver-color cdd6f4ff --inside-ver-color 1e1e2eff --ring-ver-color 313244ff --line-clear-color cdd6f4ff --text-clear-color cdd6f4ff --inside-clear-color 1e1e2eff --ring-clear-color 313244ff --line-clear-color cdd6f4ff --text-wrong-color 313244ff --inside-wrong-color f38ba8ff --ring-wrong-color 313244ff --key-hl-color cba6f7ff
|
||||
Executable
+10
@@ -0,0 +1,10 @@
|
||||
#/usr/bin/bash
|
||||
|
||||
cd /home/end/Videos
|
||||
if ["$(pidof wf-recorder)" -ne ""]; then
|
||||
notify-send "wf-recorder" "Starting recording" -a 'wf-recorder'
|
||||
wf-recorder -t -f './recording_'"$(date '+%Y_%m_%_d..%H.%M')"'.mp4' --audio=alsa_output.pci-0000_08_00.6.analog-stereo.monitor
|
||||
else
|
||||
/usr/bin/kill --signal SIGINT wf-recorder
|
||||
notify-send "wf-recorder" "Recording Stopped" -a 'wf-recorder'
|
||||
fi
|
||||
Executable
+11
@@ -0,0 +1,11 @@
|
||||
#/usr/bin/bash
|
||||
|
||||
cd /home/end/Videos
|
||||
if ["$(pidof wf-recorder)" -ne ""]; then
|
||||
rm recording.mp4
|
||||
notify-send "wf-recorder" "Starting recording"
|
||||
wf-recorder --geometry "$(slurp)"
|
||||
else
|
||||
/usr/bin/kill --signal SIGINT wf-recorder
|
||||
notify-send "wf-recorder" "Recording Stopped"
|
||||
fi
|
||||
Executable
+6
@@ -0,0 +1,6 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
WORKSPACES="$(hyprctl monitors -j | jq -r 'map(.activeWorkspace.id)')"
|
||||
WINDOWS="$(hyprctl clients -j | jq -r --argjson workspaces "$WORKSPACES" 'map(select([.workspace.id] | inside($workspaces)))' )"
|
||||
GEOM=$(echo "$WINDOWS" | jq -r '.[] | "\(.at[0]),\(.at[1]) \(.size[0])x\(.size[1])"' | slurp -f '%x %y %w %h')
|
||||
wayshot -s "$GEOM" --stdout ${#:+"$@"}
|
||||
Executable
+1858
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user