mirror of
https://github.com/rywng/dotfiles.git
synced 2024-11-22 02:41:50 +08:00
Compare commits
6 Commits
d1643efc5c
...
99a5fe023a
Author | SHA1 | Date | |
---|---|---|---|
|
99a5fe023a | ||
|
45765c1a72 | ||
|
947364f20f | ||
|
0618d4cd1d | ||
|
55ecd4440b | ||
|
02ce96b663 |
5
.bashrc
5
.bashrc
@ -16,8 +16,3 @@ fi
|
||||
|
||||
|
||||
# Put your fun stuff here.
|
||||
|
||||
# https://wiki.gentoo.org/wiki/Fish#fish_as_a_default_shell_with_bash_as_the_login_shell
|
||||
# Use nu in place of bash
|
||||
# keep this line at the bottom of ~/.bashrc
|
||||
# [ -x /bin/nu ] && SHELL=/bin/nu exec nu
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit fd3bdba06fa3bffe1f3465ef6963606e71ba5ff4
|
||||
Subproject commit 4fd5fd0e0ceef326f1b569354449187c9323014e
|
@ -11,8 +11,8 @@ set $menu fuzzel
|
||||
# my keybinds
|
||||
|
||||
# screenshot
|
||||
bindsym $mod+Print exec grimshot --cursor copy area
|
||||
bindsym $mod+Shift+s exec grimshot --cursor copy area
|
||||
bindsym $mod+Print exec grim -g "$(slurp -d)" - | wl-copy
|
||||
bindsym $mod+Shift+s exec grim -g "$(slurp -d)" - | wl-copy
|
||||
# notification client
|
||||
bindsym $mod+m exec swaync-client -t -sw
|
||||
# Logout
|
||||
|
@ -1,41 +1,41 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Modified from sway's locking script
|
||||
# TODO: remove bashism
|
||||
|
||||
|
||||
if [[ ! $(which swayidle 2> /dev/null) ]]; then
|
||||
notify-send "ERROR" "Swayidle not found"
|
||||
exit 1
|
||||
if [[ ! $(which swayidle 2>/dev/null) ]]; then
|
||||
notify-send "ERROR" "Swayidle not found"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
choices=("suspend" "poweroff" "reboot" "lock")
|
||||
choice=$(printf "%s\n" "${choices[@]}" | fuzzel -d --prompt "🔌: ")
|
||||
|
||||
if test "$choice" = lock; then
|
||||
# sleep less when power on
|
||||
if acpi -a | grep -q on; then
|
||||
sleep_time=3600
|
||||
else
|
||||
sleep_time=10
|
||||
fi
|
||||
sleep 0.3
|
||||
playerctl stop
|
||||
|
||||
if test "$choice" = lock ; then
|
||||
# sleep less when power on
|
||||
if acpi -a | grep -q on; then
|
||||
sleep_time=3600
|
||||
else
|
||||
sleep_time=10
|
||||
fi
|
||||
sleep 0.3
|
||||
bright=$(light)
|
||||
|
||||
bright=`light`
|
||||
swayidle -w \
|
||||
timeout 5 "light -S 1" resume "light -S $bright" \
|
||||
timeout $sleep_time 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \
|
||||
&
|
||||
idlepid=$!
|
||||
|
||||
swayidle -w \
|
||||
timeout 5 "light -S 1" resume "light -S $bright" \
|
||||
timeout $sleep_time 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \
|
||||
&
|
||||
idlepid=$!
|
||||
# swaylock -e -c 282828 --inside-color 00000003
|
||||
swaylock -S --effect-blur "12x12" --effect-greyscale --effect-vignette 0.5:0.5 --inside-color 28282860 \
|
||||
-e --ring-color 00000000 --line-color 00000000 --indicator --clock --text-color ebdbb2
|
||||
|
||||
# swaylock -e -c 282828 --inside-color 00000003
|
||||
swaylock -S --effect-blur "12x12" --effect-greyscale --effect-vignette 0.5:0.5 --inside-color 28282860 \
|
||||
-e --ring-color 00000000 --line-color 00000000 --indicator --clock --text-color ebdbb2
|
||||
|
||||
kill $idlepid
|
||||
swaymsg "output * power on"
|
||||
light -S $bright
|
||||
kill $idlepid
|
||||
swaymsg "output * power on"
|
||||
light -S $bright
|
||||
elif test -n "$choice"; then
|
||||
systemctl $choice
|
||||
systemctl $choice
|
||||
fi
|
||||
|
@ -21,7 +21,7 @@
|
||||
"clock"
|
||||
],
|
||||
"include": [
|
||||
"~/.config/waybar/sway-modules.json"
|
||||
"~/.config/waybar/sway-modules.jsonc"
|
||||
]
|
||||
},
|
||||
{
|
@ -44,8 +44,8 @@
|
||||
]
|
||||
},
|
||||
"clock": {
|
||||
"format": "{: %H:%M}",
|
||||
"format-alt": "{: %m-%d}",
|
||||
"format": "{: %H:%M %m-%d}",
|
||||
"format-alt": " {:%A, %B %d, %Y (%r)}",
|
||||
"tooltip-format": "<tt><small>{calendar}</small></tt>",
|
||||
"calendar": {
|
||||
"mode": "year",
|
||||
@ -90,8 +90,7 @@
|
||||
},
|
||||
"return-type": "json",
|
||||
"exec": "playerctl -a metadata --format '{\"text\": \"{{playerName}}: {{artist}} - {{markup_escape(title)}}\", \"tooltip\": \"{{markup_escape(title)}} - {{markup_escape(album)}}\", \"class\": \"{{status}}\", \"alt\": \"{{status}}\" }' -F",
|
||||
"max-length": 40,
|
||||
"on-click": "playerctl play-pause",
|
||||
"on-click-right": "pavucontrol"
|
||||
"max-length": 48,
|
||||
"on-click": "playerctl play-pause"
|
||||
}
|
||||
}
|
12
.zshrc
12
.zshrc
@ -34,14 +34,14 @@ zinit light zsh-users/zsh-history-substring-search
|
||||
|
||||
# Software
|
||||
if ! command -v bat &> /dev/null ; then
|
||||
zinit ice as"command" from"gh-r" mv"bat* -> bat" pick"bat/bat"
|
||||
zinit light sharkdp/bat
|
||||
zinit ice as"command" from"gh-r" mv"bat* -> bat" pick"bat/bat"
|
||||
zinit light sharkdp/bat
|
||||
fi
|
||||
|
||||
if ! command -v direnv &> /dev/null; then
|
||||
zinit ice from"gh-r" as"program" mv"direnv* -> direnv"
|
||||
zinit light direnv/direnv
|
||||
fi
|
||||
zinit from"gh-r" as"program" mv"direnv* -> direnv" \
|
||||
atclone'./direnv hook zsh > zhook.zsh' atpull'%atclone' \
|
||||
pick"direnv" src="zhook.zsh" for \
|
||||
direnv/direnv
|
||||
|
||||
autoload -Uz _zinit
|
||||
(( ${+_comps} )) && _comps[zinit]=_zinit
|
||||
|
Loading…
Reference in New Issue
Block a user