summaryrefslogtreecommitdiff
path: root/move-to-next-monitor
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-11-30 14:06:51 -0500
committerB. Stack <bgstack15@gmail.com>2021-11-30 14:14:37 -0500
commit0dff067e94b4c765afbe699f02f2bfb0a8714216 (patch)
tree2ff0c19ddc1496a36cd29454f26899e4ce7e8d8a /move-to-next-monitor
parentMerge branch 'newmoon-bump' into 'master' (diff)
downloadstackrpms-0dff067e94b4c765afbe699f02f2bfb0a8714216.tar.gz
stackrpms-0dff067e94b4c765afbe699f02f2bfb0a8714216.tar.bz2
stackrpms-0dff067e94b4c765afbe699f02f2bfb0a8714216.zip
update move-to-next-monitor rpm Requires for fc34
Fedora 34 split the xorg-x11-server-utils into individual packages so the Requires needs to be a boolean now.
Diffstat (limited to 'move-to-next-monitor')
-rw-r--r--move-to-next-monitor/move-to-next-monitor.spec10
1 files changed, 6 insertions, 4 deletions
diff --git a/move-to-next-monitor/move-to-next-monitor.spec b/move-to-next-monitor/move-to-next-monitor.spec
index 446cb0b..332b8b9 100644
--- a/move-to-next-monitor/move-to-next-monitor.spec
+++ b/move-to-next-monitor/move-to-next-monitor.spec
@@ -12,7 +12,7 @@
Name: move-to-next-monitor
Version: 0.0.1
-Release: 1
+Release: 2
BuildArch: noarch
Summary: Script that facilitates moving a window to the next monitor
@@ -34,8 +34,7 @@ BuildRequires: coreutils
Requires: python3
Requires: wmctrl
Requires: xdotool
-Requires: xorg-x11-server-utils
-Requires: xorg-x11-utils
+Requires: (xorg-x11-utils or ((xprop and xrandr) and xwininfo))
%description
move-to-next-monitor is a small script that makes it easy for display managers without this native functionality to provide it. You can assign a shortcut key in the display manager settings to the script to use it.
@@ -85,5 +84,8 @@ move-to-next-monitor is a small script that makes it easy for display managers w
%{_bindir}/%{name}
%changelog
-* Fri Nov 30 2018 B Stack <bgstack15@gmail.com> 0.0.1-1
+* Tue Nov 30 2021 B. Stack <bgstack15@gmail.com> 0.0.1-2
+- rebuild for Fedora 34 with split x utils packages
+
+* Fri Nov 30 2018 B. Stack <bgstack15@gmail.com> 0.0.1-1
- initial package built
bgstack15