3.14
This commit is contained in:
commit
492bd9b0e1
3 changed files with 12 additions and 3 deletions
|
@ -5,7 +5,7 @@ source "/usr/lib/sp-functions"
|
||||||
get_profile_list
|
get_profile_list
|
||||||
|
|
||||||
case $1 in
|
case $1 in
|
||||||
next|prev)
|
next|prev|reload)
|
||||||
current_profile=$(cat "${cache_dir}/active_profile")
|
current_profile=$(cat "${cache_dir}/active_profile")
|
||||||
echo ${current_profile}
|
echo ${current_profile}
|
||||||
;;&
|
;;&
|
||||||
|
@ -17,7 +17,10 @@ case $1 in
|
||||||
new_profile=$(( ${current_profile}-1 ))
|
new_profile=$(( ${current_profile}-1 ))
|
||||||
[[ "$new_profile" -eq "-1" ]] && new_profile=3
|
[[ "$new_profile" -eq "-1" ]] && new_profile=3
|
||||||
;;&
|
;;&
|
||||||
prev|next)
|
reload)
|
||||||
|
new_profile=${current_profile}
|
||||||
|
;;&
|
||||||
|
prev|next|reload)
|
||||||
op=$(printf "%01d\n" ${new_profile})
|
op=$(printf "%01d\n" ${new_profile})
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
|
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,3 +1,9 @@
|
||||||
|
sway-profiles (0.3.14) unstable; urgency=medium
|
||||||
|
|
||||||
|
* added sp-profiles reload
|
||||||
|
|
||||||
|
-- Penelope Gwen <support@pogmom.me> Fri, 14 Mar 2025 22:52:33 +0000
|
||||||
|
|
||||||
sway-profiles (0.3.13) unstable; urgency=medium
|
sway-profiles (0.3.13) unstable; urgency=medium
|
||||||
|
|
||||||
* corrected lock character in sp-powermenu
|
* corrected lock character in sp-powermenu
|
||||||
|
|
2
debian/control
vendored
2
debian/control
vendored
|
@ -1,7 +1,7 @@
|
||||||
Source: sway-profiles
|
Source: sway-profiles
|
||||||
Section: X11
|
Section: X11
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Maintainer: Penelope Gwen <penelope@pogmom.me>
|
Maintainer: Penelope Gwen <support@pogmom.me>
|
||||||
Rules-Requires-Root: no
|
Rules-Requires-Root: no
|
||||||
Build-Depends:
|
Build-Depends:
|
||||||
debhelper-compat (= 13),
|
debhelper-compat (= 13),
|
||||||
|
|
Loading…
Add table
Reference in a new issue