dotfiles

my shiny new dotfiles
git clone git://git.jakekoroman.com/dotfiles
Log | Files | Refs | README

commit ee2de2a4339538defdf012fd38a675d1562c696d
parent 5ecdeb4cc0eb171537e181877a7ccf30c75f6a5e
Author: Jake Koroman <jakekoroman@proton.me>
Date:   Mon, 16 Sep 2024 10:08:45 -0400

script name changes.

Diffstat:
Dscripts/artix-pipewire-launcher.sh | 5-----
Ascripts/myswayidle | 6++++++
Ascripts/myswaylock | 16++++++++++++++++
Rscripts/nightlight.sh -> scripts/nightlight | 0
Dscripts/swayidle.sh | 6------
5 files changed, 22 insertions(+), 11 deletions(-)

diff --git a/scripts/artix-pipewire-launcher.sh b/scripts/artix-pipewire-launcher.sh @@ -1,5 +0,0 @@ -#!/bin/sh - -/usr/bin/pipewire & -/usr/bin/pipewire-pulse & -/usr/bin/wireplumber & diff --git a/scripts/myswayidle b/scripts/myswayidle @@ -0,0 +1,6 @@ +#!/bin/sh + +exec swayidle -w \ + timeout 600 'myswaylock' \ + timeout 900 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \ + before-sleep 'gpg-connect-agent --no-autostart reloadagent /bye; myswaylock' diff --git a/scripts/myswaylock b/scripts/myswaylock @@ -0,0 +1,16 @@ +#!/bin/sh + +swaylock \ + --screenshots \ + --clock \ + --indicator \ + --indicator-radius 100 \ + --indicator-thickness 7 \ + --effect-blur 7x5 \ + --effect-vignette 0.5:0.5 \ + --ring-color 586e75 \ + --key-hl-color 93a1a1 \ + --line-color 00000000 \ + --inside-color 00000088 \ + --separator-color 00000000 \ + --grace 2 diff --git a/scripts/nightlight.sh b/scripts/nightlight diff --git a/scripts/swayidle.sh b/scripts/swayidle.sh @@ -1,6 +0,0 @@ -#!/bin/sh - -exec swayidle -w \ - timeout 600 'swaylock -f -c 000000' \ - timeout 900 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \ - before-sleep 'swaylock -f -c 000000; gpg-connect-agent --no-autostart reloadagent /bye'