Hello community,

here is the log from the commit of package openSUSEway for openSUSE:Factory 
checked in at 2020-08-04 20:24:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSEway (Old)
 and      /work/SRC/openSUSE:Factory/.openSUSEway.new.3592 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openSUSEway"

Tue Aug  4 20:24:44 2020 rev:4 rq:824297 version:0.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/openSUSEway/openSUSEway.changes  2020-07-31 
16:07:38.364826542 +0200
+++ /work/SRC/openSUSE:Factory/.openSUSEway.new.3592/openSUSEway.changes        
2020-08-04 20:25:14.601039470 +0200
@@ -1,0 +2,9 @@
+Tue Aug  4 10:29:26 UTC 2020 - Denis Kondratenko <[email protected]>
+
+- New in 0.9 release
+  * fix gtk cursor and icon theme, fixes #22
+  * correct brightness adjustment indicator, fixes #23
+  * include all user custom configs
+- fix name in enviroment.d to 50-openSUSEway.sh
+
+-------------------------------------------------------------------

Old:
----
  openSUSEway-0.8.tar.gz

New:
----
  openSUSEway-0.9.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ openSUSEway.spec ++++++
--- /var/tmp/diff_new_pack.0kdqxN/_old  2020-08-04 20:25:16.901040245 +0200
+++ /var/tmp/diff_new_pack.0kdqxN/_new  2020-08-04 20:25:16.909040248 +0200
@@ -19,7 +19,7 @@
 %define waybar_version %(rpm -q --queryformat "%%{version}" waybar)
 
 Name:           openSUSEway
-Version:        0.8
+Version:        0.9
 Release:        0
 Summary:        The openSUSEway desktop environment meta package
 Group:          Metapackages
@@ -124,7 +124,7 @@
 
 ## openSUSEway package
 install -D -p -m 644 openSUSEway.sh 
%{buildroot}%{_sysconfdir}/profile.d/openSUSEway.sh
-install -D -p -m 644 .config/sway/env 
%{buildroot}%{_prefix}/lib/environment.d/50-openSUSE.conf
+install -D -p -m 644 .config/sway/env 
%{buildroot}%{_prefix}/lib/environment.d/50-openSUSEway.conf
 
 ## openSUSEway pattern package
 mkdir -p %{buildroot}/%{_defaultdocdir}/patterns/
@@ -151,7 +151,7 @@
 
 %files
 %config %{_sysconfdir}/profile.d/openSUSEway.sh
-%config %{_prefix}/lib/environment.d/50-openSUSE.conf
+%config %{_prefix}/lib/environment.d/50-openSUSEway.conf
 
 %files -n patterns-openSUSEway
 %dir %{_defaultdocdir}/patterns

++++++ openSUSEway-0.8.tar.gz -> openSUSEway-0.9.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openSUSEway-0.8/.config/sway/config 
new/openSUSEway-0.9/.config/sway/config
--- old/openSUSEway-0.8/.config/sway/config     2020-07-31 10:55:49.000000000 
+0200
+++ new/openSUSEway-0.9/.config/sway/config     2020-08-04 12:24:04.000000000 
+0200
@@ -217,3 +217,4 @@
 #}
 
 include /etc/sway/config.d/*.conf
+include ~/.config/sway/config.d/*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSEway-0.8/.config/sway/config.d/50-openSUSE.conf 
new/openSUSEway-0.9/.config/sway/config.d/50-openSUSE.conf
--- old/openSUSEway-0.8/.config/sway/config.d/50-openSUSE.conf  2020-07-31 
10:55:49.000000000 +0200
+++ new/openSUSEway-0.9/.config/sway/config.d/50-openSUSE.conf  2020-08-04 
12:24:04.000000000 +0200
@@ -24,8 +24,8 @@
 # Media keys
 bindsym XF86AudioMicMute exec pactl set-source-mute @DEFAULT_SOURCE@ toggle
 
-bindsym XF86MonBrightnessDown exec brightnessctl -q set 5%- && brightnessctl 
get > $SWAYSOCK.wob
-bindsym XF86MonBrightnessUp exec brightnessctl -q set +5% && brightnessctl get 
> $SWAYSOCK.wob
+bindsym XF86MonBrightnessDown exec brightnessctl -q set 5%- && ( echo 
$((`brightnessctl get` * 100 / `brightnessctl m`)) > $SWAYSOCK.wob )
+bindsym XF86MonBrightnessUp exec brightnessctl -q set +5% && ( echo 
$((`brightnessctl get` * 100 / `brightnessctl m`)) > $SWAYSOCK.wob )
 
 bindsym XF86AudioRaiseVolume exec pamixer -ui 2 && pamixer --get-volume > 
$SWAYSOCK.wob
 bindsym XF86AudioLowerVolume exec pamixer -ud 2 && pamixer --get-volume > 
$SWAYSOCK.wob
@@ -48,7 +48,8 @@
 exec_always {
     systemctl --user import-environment
     gsettings set org.gnome.desktop.interface gtk-theme 'Adwaita-dark'
-    gsettings set org.gnome.desktop.interface icon-theme 'Adwaita-dark'
-    gsettings set org.gnome.desktop.interface cursor-theme 'Adwaita-dark'
-    mkfifo $SWAYSOCK.wob && tail -f $SWAYSOCK.wob | wob
+    gsettings set org.gnome.desktop.interface icon-theme 'Adwaita'
+    gsettings set org.gnome.desktop.interface cursor-theme 'Adwaita'
+    test -e $SWAYSOCK.wob || mkfifo $SWAYSOCK.wob
+    tail -f $SWAYSOCK.wob | wob
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openSUSEway-0.8/README.md 
new/openSUSEway-0.9/README.md
--- old/openSUSEway-0.8/README.md       2020-07-31 10:55:49.000000000 +0200
+++ new/openSUSEway-0.9/README.md       2020-08-04 12:24:04.000000000 +0200
@@ -10,7 +10,9 @@
 
 openSUSEway imports some recomended (optional) variables from `/etc/sway/env`, 
that is done by `/etc/profile.d/openSUSEway.sh` for text mode and by 
`/usr/lib/environment.d/50-openSUSE.conf` for systemd graphic environments.
 
-[Sway openSUSE wiki page](https://en.opensuse.org/Sway) for more details.
+[openSUSEway desktop enviroment](https://en.opensuse.org/Portal:OpenSUSEway) 
for more details on complete desktop enviroment for openSUSE.
+
+[Sway openSUSE wiki page](https://en.opensuse.org/Sway) for more details about 
Sway on openSUSE.
 
 Another dotfiles examples:
 * https://github.com/jjquin/swayarch


Reply via email to