From c65469db20657c784ed70c36487f56b4415d65e3 Mon Sep 17 00:00:00 2001 From: luke bonham Date: Wed, 1 Oct 2014 13:25:29 +0200 Subject: [PATCH 1/5] #56: removed 'ncmpcpp toggle' due to deprecation --- rc.lua.blackburn | 2 +- rc.lua.copland | 16 +++++++++------- rc.lua.dremora | 2 +- rc.lua.holo | 4 ++-- rc.lua.multicolor | 2 +- rc.lua.powerarrow-darker | 2 +- rc.lua.rainbow | 2 +- rc.lua.steamburn | 2 +- 8 files changed, 17 insertions(+), 15 deletions(-) diff --git a/rc.lua.blackburn b/rc.lua.blackburn index 4d543b3..ac9643d 100644 --- a/rc.lua.blackburn +++ b/rc.lua.blackburn @@ -452,7 +452,7 @@ globalkeys = awful.util.table.join( -- MPD control awful.key({ altkey, "Control" }, "Up", function () - awful.util.spawn_with_shell("mpc toggle || ncmpcpp toggle || ncmpc toggle || pms toggle") + awful.util.spawn_with_shell("mpc toggle || ncmpc toggle || pms toggle") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Down", diff --git a/rc.lua.copland b/rc.lua.copland index ba98930..ce783a8 100644 --- a/rc.lua.copland +++ b/rc.lua.copland @@ -118,6 +118,8 @@ require("freedesktop/freedesktop") -- {{{ Wibox markup = lain.util.markup blue = beautiful.fg_focus +red = "#EB8F8F" +green = "#8FEB8F" -- Textclock mytextclock = awful.widget.textclock(" %H:%M ") @@ -186,18 +188,18 @@ batupd = lain.widgets.bat({ baticon:set_image(beautiful.ac) else bat_perc = tonumber(bat_now.perc) - if bat_perc > 50 then + if bat_perc >= 98 then + batbar:set_color(green) + elseif bat_perc > 50 then batbar:set_color(beautiful.fg_normal) baticon:set_image(beautiful.bat) elseif bat_perc > 15 then batbar:set_color(beautiful.fg_normal) baticon:set_image(beautiful.bat_low) else - batbar:set_color("#EB8F8F") + batbar:set_color(red) baticon:set_image(beautiful.bat_no) - end - end batbar:set_value(bat_perc / 100) end @@ -244,10 +246,10 @@ settings = function() volicon:set_image(beautiful.vol) end end, -colors = +colors = { background = beautiful.bg_normal, - mute = "#EB8F8F", + mute = red, unmute = beautiful.fg_normal }}) volmargin = wibox.layout.margin(volume.bar, 2, 7) @@ -505,7 +507,7 @@ globalkeys = awful.util.table.join( -- MPD control awful.key({ altkey, "Control" }, "Up", function () - awful.util.spawn_with_shell("mpc toggle || ncmpcpp toggle || ncmpc toggle || pms toggle") + awful.util.spawn_with_shell("mpc toggle || ncmpc toggle || pms toggle") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Down", diff --git a/rc.lua.dremora b/rc.lua.dremora index 0a17ef4..4094998 100644 --- a/rc.lua.dremora +++ b/rc.lua.dremora @@ -452,7 +452,7 @@ globalkeys = awful.util.table.join( -- MPD control awful.key({ altkey, "Control" }, "Up", function () - awful.util.spawn_with_shell("mpc toggle || ncmpcpp toggle || ncmpc toggle || pms toggle") + awful.util.spawn_with_shell("mpc toggle || ncmpc toggle || pms toggle") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Down", diff --git a/rc.lua.holo b/rc.lua.holo index 9c3a28f..851da88 100644 --- a/rc.lua.holo +++ b/rc.lua.holo @@ -218,7 +218,7 @@ function () end))) play_pause_icon:buttons(awful.util.table.join(awful.button({}, 1, function () - awful.util.spawn_with_shell("mpc toggle || ncmpcpp toggle || ncmpc toggle || pms toggle") + awful.util.spawn_with_shell("mpc toggle || ncmpc toggle || pms toggle") mpdwidget.update() end))) @@ -587,7 +587,7 @@ globalkeys = awful.util.table.join( -- MPD control awful.key({ altkey, "Control" }, "Up", function () - awful.util.spawn_with_shell("mpc toggle || ncmpcpp toggle || ncmpc toggle || pms toggle") + awful.util.spawn_with_shell("mpc toggle || ncmpc toggle || pms toggle") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Down", diff --git a/rc.lua.multicolor b/rc.lua.multicolor index 3649248..005802b 100644 --- a/rc.lua.multicolor +++ b/rc.lua.multicolor @@ -515,7 +515,7 @@ globalkeys = awful.util.table.join( -- MPD control awful.key({ altkey, "Control" }, "Up", function () - awful.util.spawn_with_shell("mpc toggle || ncmpcpp toggle || ncmpc toggle || pms toggle") + awful.util.spawn_with_shell("mpc toggle || ncmpc toggle || pms toggle") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Down", diff --git a/rc.lua.powerarrow-darker b/rc.lua.powerarrow-darker index 1aedd4a..4ce641f 100644 --- a/rc.lua.powerarrow-darker +++ b/rc.lua.powerarrow-darker @@ -504,7 +504,7 @@ globalkeys = awful.util.table.join( -- MPD control awful.key({ altkey, "Control" }, "Up", function () - awful.util.spawn_with_shell("mpc toggle || ncmpcpp toggle || ncmpc toggle || pms toggle") + awful.util.spawn_with_shell("mpc toggle || ncmpc toggle || pms toggle") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Down", diff --git a/rc.lua.rainbow b/rc.lua.rainbow index 2e8a8c3..f1a2b4c 100644 --- a/rc.lua.rainbow +++ b/rc.lua.rainbow @@ -450,7 +450,7 @@ globalkeys = awful.util.table.join( -- MPD control awful.key({ altkey, "Control" }, "Up", function () - awful.util.spawn_with_shell("mpc toggle || ncmpcpp toggle || ncmpc toggle || pms toggle") + awful.util.spawn_with_shell("mpc toggle || ncmpc toggle || pms toggle") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Down", diff --git a/rc.lua.steamburn b/rc.lua.steamburn index f6d521d..758b331 100644 --- a/rc.lua.steamburn +++ b/rc.lua.steamburn @@ -459,7 +459,7 @@ globalkeys = awful.util.table.join( -- MPD control awful.key({ altkey, "Control" }, "Up", function () - awful.util.spawn_with_shell("mpc toggle || ncmpcpp toggle || ncmpc toggle || pms toggle") + awful.util.spawn_with_shell("mpc toggle || ncmpc toggle || pms toggle") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Down", From 45b5b3b9178e358cd97a02cc2867096965a76907 Mon Sep 17 00:00:00 2001 From: Yuexiao Guo Date: Wed, 1 Oct 2014 10:36:32 -0400 Subject: [PATCH 2/5] added widget icons with alternate backgrounds --- themes/powerarrow-darker/alticons/alt_ac.png | Bin 0 -> 179 bytes themes/powerarrow-darker/alticons/alt_battery.png | Bin 0 -> 169 bytes .../alticons/alt_battery_empty.png | Bin 0 -> 165 bytes .../alticons/alt_battery_low.png | Bin 0 -> 169 bytes themes/powerarrow-darker/alticons/alt_cpu.png | Bin 0 -> 207 bytes themes/powerarrow-darker/alticons/alt_dwindle.png | Bin 0 -> 208 bytes themes/powerarrow-darker/alticons/alt_fairh.png | Bin 0 -> 203 bytes themes/powerarrow-darker/alticons/alt_fairv.png | Bin 0 -> 214 bytes .../powerarrow-darker/alticons/alt_floating.png | Bin 0 -> 198 bytes themes/powerarrow-darker/alticons/alt_hdd.png | Bin 0 -> 287 bytes .../powerarrow-darker/alticons/alt_magnifier.png | Bin 0 -> 229 bytes themes/powerarrow-darker/alticons/alt_mail.png | Bin 0 -> 213 bytes themes/powerarrow-darker/alticons/alt_mail_on.png | Bin 0 -> 213 bytes themes/powerarrow-darker/alticons/alt_max.png | Bin 0 -> 229 bytes themes/powerarrow-darker/alticons/alt_mem.png | Bin 0 -> 156 bytes themes/powerarrow-darker/alticons/alt_net.png | Bin 0 -> 193 bytes .../powerarrow-darker/alticons/alt_net_wired.png | Bin 0 -> 212 bytes themes/powerarrow-darker/alticons/alt_note.png | Bin 0 -> 199 bytes themes/powerarrow-darker/alticons/alt_note_on.png | Bin 0 -> 175 bytes .../powerarrow-darker/alticons/alt_scissors.png | Bin 0 -> 220 bytes themes/powerarrow-darker/alticons/alt_spiral.png | Bin 0 -> 206 bytes themes/powerarrow-darker/alticons/alt_task.png | Bin 0 -> 190 bytes themes/powerarrow-darker/alticons/alt_temp.png | Bin 0 -> 205 bytes themes/powerarrow-darker/alticons/alt_tile.png | Bin 0 -> 195 bytes .../powerarrow-darker/alticons/alt_tilebottom.png | Bin 0 -> 200 bytes .../powerarrow-darker/alticons/alt_tileleft.png | Bin 0 -> 193 bytes themes/powerarrow-darker/alticons/alt_tiletop.png | Bin 0 -> 199 bytes themes/powerarrow-darker/alticons/alt_vol.png | Bin 0 -> 196 bytes themes/powerarrow-darker/alticons/alt_vol_low.png | Bin 0 -> 184 bytes .../powerarrow-darker/alticons/alt_vol_mute.png | Bin 0 -> 210 bytes themes/powerarrow-darker/alticons/alt_vol_no.png | Bin 0 -> 175 bytes 31 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 themes/powerarrow-darker/alticons/alt_ac.png create mode 100644 themes/powerarrow-darker/alticons/alt_battery.png create mode 100644 themes/powerarrow-darker/alticons/alt_battery_empty.png create mode 100644 themes/powerarrow-darker/alticons/alt_battery_low.png create mode 100644 themes/powerarrow-darker/alticons/alt_cpu.png create mode 100644 themes/powerarrow-darker/alticons/alt_dwindle.png create mode 100644 themes/powerarrow-darker/alticons/alt_fairh.png create mode 100644 themes/powerarrow-darker/alticons/alt_fairv.png create mode 100644 themes/powerarrow-darker/alticons/alt_floating.png create mode 100644 themes/powerarrow-darker/alticons/alt_hdd.png create mode 100644 themes/powerarrow-darker/alticons/alt_magnifier.png create mode 100644 themes/powerarrow-darker/alticons/alt_mail.png create mode 100644 themes/powerarrow-darker/alticons/alt_mail_on.png create mode 100644 themes/powerarrow-darker/alticons/alt_max.png create mode 100644 themes/powerarrow-darker/alticons/alt_mem.png create mode 100644 themes/powerarrow-darker/alticons/alt_net.png create mode 100644 themes/powerarrow-darker/alticons/alt_net_wired.png create mode 100644 themes/powerarrow-darker/alticons/alt_note.png create mode 100644 themes/powerarrow-darker/alticons/alt_note_on.png create mode 100644 themes/powerarrow-darker/alticons/alt_scissors.png create mode 100644 themes/powerarrow-darker/alticons/alt_spiral.png create mode 100644 themes/powerarrow-darker/alticons/alt_task.png create mode 100644 themes/powerarrow-darker/alticons/alt_temp.png create mode 100644 themes/powerarrow-darker/alticons/alt_tile.png create mode 100644 themes/powerarrow-darker/alticons/alt_tilebottom.png create mode 100644 themes/powerarrow-darker/alticons/alt_tileleft.png create mode 100644 themes/powerarrow-darker/alticons/alt_tiletop.png create mode 100644 themes/powerarrow-darker/alticons/alt_vol.png create mode 100644 themes/powerarrow-darker/alticons/alt_vol_low.png create mode 100644 themes/powerarrow-darker/alticons/alt_vol_mute.png create mode 100644 themes/powerarrow-darker/alticons/alt_vol_no.png diff --git a/themes/powerarrow-darker/alticons/alt_ac.png b/themes/powerarrow-darker/alticons/alt_ac.png new file mode 100644 index 0000000000000000000000000000000000000000..7037bc01dc19beec9c7120ea76d08a683886cc4c GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+0wn(&ce?|mn3BBRT^Rni_n+Ah4nJ za0`PlBg3pY5H=O_Iq56yc&x946Sp3LN1;zjv*T7lTH4dcMvczG~i)%J U4)t&E0Gh|(>FVdQ&MBb@0N5@uwEzGB literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_battery.png b/themes/powerarrow-darker/alticons/alt_battery.png new file mode 100644 index 0000000000000000000000000000000000000000..612f8f676fc3e7cd2e6c351ade251d11332cc2fb GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+0wn(&ce?|mn3BBRT^Rni_n+Ah4nJ za0`PlBg3pY5H=O_Iq56yxJPEAM<_#g{(YX978nDC!72^?;v1cXuz{#QCeFX zk895fKKE(sT$460c(wBAqB*nj78P4;T)=%rDC|nlRh46oGq@N|AK*B0zU!zz&=dww LS3j3^P64nJ za0`PlBg3pY5H=O_Iq56d~A%i`a+68Au~@G#}JM4$tHi!I|vvU8t|-Gl-8EU z4nJ za0`PlBg3pY5H=O_Iq56d~EW^74)5eLROwGjv*T7lTH4dcMvczG~ijWD6K7x z$F=7KpZm0Ru1T90yjpp5QBA?GK8?u{7g)16wX=?82|ZTuVP$Aw;W!fbVbx`zDGZ*j KelF{r5}E*?hA|)j literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_cpu.png b/themes/powerarrow-darker/alticons/alt_cpu.png new file mode 100644 index 0000000000000000000000000000000000000000..d74c1dcc36ed93e5a7d4a85dff6edb2bdfa4614a GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|wj^(N7Y2WZAO`^;xDPe6) y+}Zc!z%kJ<73r4Kt~y6PRpT=2^LomXM9+y%pfq?!1A(Y{$ijV44$rjF6*2UngAZbI;{Wz literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_fairv.png b/themes/powerarrow-darker/alticons/alt_fairv.png new file mode 100644 index 0000000000000000000000000000000000000000..84a3f9f9ec26ce450d29d9d743e8c5666271e766 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|wj^(N7Y2WZAO`P_Ug|as<&bLeRaES5D@?eoc5MQ);IU)kFDjCGBb5zLHY9wRoF&1% nlCwXf+2bRhQG(3AqZ|zO{nBf%6?7c~8qeVA>gTe~DWM4fU-~w< literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_hdd.png b/themes/powerarrow-darker/alticons/alt_hdd.png new file mode 100644 index 0000000000000000000000000000000000000000..87b09669badcfab09a66e66e9ed920e329d1d5ab GIT binary patch literal 287 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|wj^(N7Y2WZAO`TgmT%LTfx-978NlznyHzb;v=$HU7x4 zOV@7cvdr%Jelf_gs72;Tm`!s9%W6gT4d3||C45%aJR>#Tq=`AY=0@e8pPOett@M*O zU9kL@;e_4qUkAV5wmUNVM(;AN9gN8e3^Q(i(ss|9!DO89iSI(C$%DkS=m&DrZ-Z~7 z8*4vV$I!QOLGzroOZ`_a=)Lo1iTKI|J9ken3T0ZYGGUvDNKr>_uEfI_))ftc1(`42 g@qhaNJN_$6evKVVi0krsKzB2Ey85}Sb4q9e0F?l2$p8QV literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_magnifier.png b/themes/powerarrow-darker/alticons/alt_magnifier.png new file mode 100644 index 0000000000000000000000000000000000000000..2d3783f5b9b5855268b19372597d7d49f3011ac6 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|wj^(N7Y2WZAO`>B0pluAEu6{1-oD!M< D=&e1y literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_mail_on.png b/themes/powerarrow-darker/alticons/alt_mail_on.png new file mode 100644 index 0000000000000000000000000000000000000000..fa646f00af1a4eeb8cc323550cbe14e89a7612b7 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|wj^(N7Y2WZAO`O=u<5X=vX`mo`iKnkC`#mm3K0)QTXRZeWg_1m7978NlC!3gmdKI;Vst E0IMrPPyhe` literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_max.png b/themes/powerarrow-darker/alticons/alt_max.png new file mode 100644 index 0000000000000000000000000000000000000000..1e668f471d2fe4e0448781c660f26640eb4e88d5 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|wj^(N7Y2WZAO` UVwJl64rn`rr>mdKI;Vst05`5g)&Kwi literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_mem.png b/themes/powerarrow-darker/alticons/alt_mem.png new file mode 100644 index 0000000000000000000000000000000000000000..568921e2ad87e7cd695894e8cf2c18a27f3fd044 GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+0wn(&ce?|mn3BBRT^ItlJ#-2H@;D1TB8wRq zxP?KOkzv*x37{Z*iKnkC`#mm3J|Rhlx3NkmdKI;Vst06DWLkpKVy literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_net.png b/themes/powerarrow-darker/alticons/alt_net.png new file mode 100644 index 0000000000000000000000000000000000000000..35efd2b9ebf4d89ef19a62f6797b34fc7d3db694 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+0wn(&ce?|mn3BBRT^ItlJ#-2H@;D1TB8wRq zxP?KOkzv*x37{Z*iKnkC`#mm3J|XL?y)wsuLP4G`jv*T7lTA_-cxFhj%~ujjIk(f5 zV_Tq1nCo*fMQ?@A5`oPOX=0m-cwQ$=TCvP%5&N^9t}mV?{CIaqX|cs(ixmC@)6NwI jR@*u5$`tuZv2-z1Fo^y>Ib&Y}&~ye*S3j3^P6=`%0xCqbpvM>^PKGs(gL2`rbx$o&!6WA~SU&`WX&M zPYhv54nG`ZFS%#KTeo|;hr*+^<3pn-FID|D|Jz)-ZGCEsFVdQ&MBb@ E0L`RBdH?_b literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_note.png b/themes/powerarrow-darker/alticons/alt_note.png new file mode 100644 index 0000000000000000000000000000000000000000..302da900a9342261c0028a886e11faee2fb8a17f GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+0wn(&ce?|mn3BBRT^ItlJ#-2H@;D1TB8wRq zxP?KOkzv*x37{Z*iKnkC`#mm3J`o0^J3%Qxp$JbG#}JM4$tEcZJToNN<|~P%oZFei zCd!t_#@3e4bG~O*fkx7W_DeB5S{A-Z2?kxwvvy_}{CF3`)+~Cb|JRPD16>cb56iNF lfGAK)@`)~q_AC}=hRb0*2L+r}nSpjNc)I$ztaD0e0sx8JHnac$ literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_note_on.png b/themes/powerarrow-darker/alticons/alt_note_on.png new file mode 100644 index 0000000000000000000000000000000000000000..4fc3b45310bae63c2219d1b80ed74c43003a6fca GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|wj^(N7Y2WZAO`O=u<5X=vX`mo`iKnkC`#mm3J`ur)oT6z!AsbH@#}JFt$tETyDGS&Vk`@R_ z9An$~V3I}pi!zScJ1+i=En|MHl(X$|(Nm9Z)0~G5`Z+7!DIL4$<89x}z*fT>YalDa Q4K#p_20EL3r-*4uh)_lI_q9U8s(Qt=t8}I6Ll_bw(QS)4#tJ2D# zaAxVJKc&+bKj0E*;#$ziIwQJa^42V+yYpU5l-;_FVdQ&MBb@0Fw|#>;M1& literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_spiral.png b/themes/powerarrow-darker/alticons/alt_spiral.png new file mode 100644 index 0000000000000000000000000000000000000000..c492b9f4a275a36bd8bcf54bd6c3c5591c999370 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|wj^(N7Y2WZAO`6SM_64KKZd4NEtB_<>~x;sh2lT9&O t<(R-KH+$uEd)nTZcJWA^&AwvJ!BFI+`mQX1^9Ils22WQ%mvv4FO#s+LIjH~u literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_tile.png b/themes/powerarrow-darker/alticons/alt_tile.png new file mode 100644 index 0000000000000000000000000000000000000000..d164bab31a5df1f75e2b60a47652db5fd601a033 GIT binary patch literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|wj^(N7Y2WZAO`$tt?k$HQxXL literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_tilebottom.png b/themes/powerarrow-darker/alticons/alt_tilebottom.png new file mode 100644 index 0000000000000000000000000000000000000000..53a0475ed94825a3e25b7f5e261664411a4ecf26 GIT binary patch literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|wj^(N7Y2WZAO`7(8A5T-G@yGywogDmTgi literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_tileleft.png b/themes/powerarrow-darker/alticons/alt_tileleft.png new file mode 100644 index 0000000000000000000000000000000000000000..790de383f9e99271c853a21dcb7b548763af2a63 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|wj^(N7Y2WZAO`)> literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_tiletop.png b/themes/powerarrow-darker/alticons/alt_tiletop.png new file mode 100644 index 0000000000000000000000000000000000000000..af10bc22f6b26ad73fb7a9bd0bc2798f9ea7dd77 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|wj^(N7Y2WZAO`83CV~EA+WD^sUlm%=FNehG| zYS=a^6rY=WyO#BsnNiVI#UsaGE0wUe{BYLTF!6AsgdLATkhbF{fn;g32DukHEg}ib pH*{p4XwJS;u*h=_?>+-2hMP-O`BIK@10II{o% literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_vol.png b/themes/powerarrow-darker/alticons/alt_vol.png new file mode 100644 index 0000000000000000000000000000000000000000..7ab6551171686ddd7e5ad8b3b8d95a733df5757d GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|wj^(N7l!{JxM1({$v_d#0*}aI z1_o|n5N2eUHAey{$X?><>&kwQi;-8;`01jfQ-MN(o-U3d7N?UgTe~DWM4fuD(H} literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_vol_low.png b/themes/powerarrow-darker/alticons/alt_vol_low.png new file mode 100644 index 0000000000000000000000000000000000000000..ade5019053fafadd392cf91168175b00095adb44 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|wj^(N7Y2WZAO`b3rNb+a_m*v*&%XR!rfT+FAoz# Y|3QAwWB(W31{%oV>FVdQ&MBb@0GaYI)&Kwi literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_vol_mute.png b/themes/powerarrow-darker/alticons/alt_vol_mute.png new file mode 100644 index 0000000000000000000000000000000000000000..d173f5304f0f62502d9cb2ffc959fa97959b1188 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|wj^(N7Y2WZAO`0kJN#6%;OXk;vd$@?2>`*f BKkEPh literal 0 HcmV?d00001 diff --git a/themes/powerarrow-darker/alticons/alt_vol_no.png b/themes/powerarrow-darker/alticons/alt_vol_no.png new file mode 100644 index 0000000000000000000000000000000000000000..41fb23efc00b40b841f61363c05df2f6018b6ea9 GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|wj^(N7Y2WZAO`w}83fXwNIEGl9PBt+y`E%ZZ^}rDa zRf9>qv+S$Qp0WvMb1(w|_foc=D-qs4zNsEQzDwtIdl>c Date: Wed, 1 Oct 2014 11:34:51 -0400 Subject: [PATCH 3/5] removed ncmpcpp cli control due to deprecation --- rc.lua.blackburn | 6 +++--- rc.lua.copland | 6 +++--- rc.lua.dremora | 6 +++--- rc.lua.holo | 12 ++++++------ rc.lua.multicolor | 6 +++--- rc.lua.powerarrow-darker | 6 +++--- rc.lua.rainbow | 6 +++--- rc.lua.steamburn | 6 +++--- 8 files changed, 27 insertions(+), 27 deletions(-) diff --git a/rc.lua.blackburn b/rc.lua.blackburn index ac9643d..1523aff 100644 --- a/rc.lua.blackburn +++ b/rc.lua.blackburn @@ -457,17 +457,17 @@ globalkeys = awful.util.table.join( end), awful.key({ altkey, "Control" }, "Down", function () - awful.util.spawn_with_shell("mpc stop || ncmpcpp stop || ncmpc stop || pms stop") + awful.util.spawn_with_shell("mpc stop || ncmpc stop || pms stop") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Left", function () - awful.util.spawn_with_shell("mpc prev || ncmpcpp prev || ncmpc prev || pms prev") + awful.util.spawn_with_shell("mpc prev || ncmpc prev || pms prev") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Right", function () - awful.util.spawn_with_shell("mpc next || ncmpcpp next || ncmpc next || pms next") + awful.util.spawn_with_shell("mpc next || ncmpc next || pms next") mpdwidget.update() end), diff --git a/rc.lua.copland b/rc.lua.copland index ce783a8..5b9b0a2 100644 --- a/rc.lua.copland +++ b/rc.lua.copland @@ -512,17 +512,17 @@ globalkeys = awful.util.table.join( end), awful.key({ altkey, "Control" }, "Down", function () - awful.util.spawn_with_shell("mpc stop || ncmpcpp stop || ncmpc stop || pms stop") + awful.util.spawn_with_shell("mpc stop || ncmpc stop || pms stop") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Left", function () - awful.util.spawn_with_shell("mpc prev || ncmpcpp prev || ncmpc prev || pms prev") + awful.util.spawn_with_shell("mpc prev || ncmpc prev || pms prev") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Right", function () - awful.util.spawn_with_shell("mpc next || ncmpcpp next || ncmpc next || pms next") + awful.util.spawn_with_shell("mpc next || ncmpc next || pms next") mpdwidget.update() end), diff --git a/rc.lua.dremora b/rc.lua.dremora index 4094998..62ae71d 100644 --- a/rc.lua.dremora +++ b/rc.lua.dremora @@ -457,17 +457,17 @@ globalkeys = awful.util.table.join( end), awful.key({ altkey, "Control" }, "Down", function () - awful.util.spawn_with_shell("mpc stop || ncmpcpp stop || ncmpc stop || pms stop") + awful.util.spawn_with_shell("mpc stop || ncmpc stop || pms stop") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Left", function () - awful.util.spawn_with_shell("mpc prev || ncmpcpp prev || ncmpc prev || pms prev") + awful.util.spawn_with_shell("mpc prev || ncmpc prev || pms prev") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Right", function () - awful.util.spawn_with_shell("mpc next || ncmpcpp next || ncmpc next || pms next") + awful.util.spawn_with_shell("mpc next || ncmpc next || pms next") mpdwidget.update() end), diff --git a/rc.lua.holo b/rc.lua.holo index 851da88..1e19d21 100644 --- a/rc.lua.holo +++ b/rc.lua.holo @@ -202,18 +202,18 @@ mpd_icon:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.util.spawn_with_shell(musicplr) end))) prev_icon:buttons(awful.util.table.join(awful.button({}, 1, function () - awful.util.spawn_with_shell("mpc prev || ncmpcpp prev || ncmpc prev || pms prev") + awful.util.spawn_with_shell("mpc prev || ncmpc prev || pms prev") mpdwidget.update() end))) next_icon:buttons(awful.util.table.join(awful.button({}, 1, function () - awful.util.spawn_with_shell("mpc next || ncmpcpp next || ncmpc next || pms next") + awful.util.spawn_with_shell("mpc next || ncmpc next || pms next") mpdwidget.update() end))) stop_icon:buttons(awful.util.table.join(awful.button({}, 1, function () play_pause_icon:set_image(beautiful.play) - awful.util.spawn_with_shell("mpc stop || ncmpcpp stop || ncmpc stop || pms stop") + awful.util.spawn_with_shell("mpc stop || ncmpc stop || pms stop") mpdwidget.update() end))) play_pause_icon:buttons(awful.util.table.join(awful.button({}, 1, @@ -592,17 +592,17 @@ globalkeys = awful.util.table.join( end), awful.key({ altkey, "Control" }, "Down", function () - awful.util.spawn_with_shell("mpc stop || ncmpcpp stop || ncmpc stop || pms stop") + awful.util.spawn_with_shell("mpc stop || ncmpc stop || pms stop") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Left", function () - awful.util.spawn_with_shell("mpc prev || ncmpcpp prev || ncmpc prev || pms prev") + awful.util.spawn_with_shell("mpc prev || ncmpc prev || pms prev") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Right", function () - awful.util.spawn_with_shell("mpc next || ncmpcpp next || ncmpc next || pms next") + awful.util.spawn_with_shell("mpc next || ncmpc next || pms next") mpdwidget.update() end), diff --git a/rc.lua.multicolor b/rc.lua.multicolor index 005802b..621e9a2 100644 --- a/rc.lua.multicolor +++ b/rc.lua.multicolor @@ -520,17 +520,17 @@ globalkeys = awful.util.table.join( end), awful.key({ altkey, "Control" }, "Down", function () - awful.util.spawn_with_shell("mpc stop || ncmpcpp stop || ncmpc stop || pms stop") + awful.util.spawn_with_shell("mpc stop || ncmpc stop || pms stop") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Left", function () - awful.util.spawn_with_shell("mpc prev || ncmpcpp prev || ncmpc prev || pms prev") + awful.util.spawn_with_shell("mpc prev || ncmpc prev || pms prev") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Right", function () - awful.util.spawn_with_shell("mpc next || ncmpcpp next || ncmpc next || pms next") + awful.util.spawn_with_shell("mpc next || ncmpc next || pms next") mpdwidget.update() end), diff --git a/rc.lua.powerarrow-darker b/rc.lua.powerarrow-darker index 4ce641f..6718585 100644 --- a/rc.lua.powerarrow-darker +++ b/rc.lua.powerarrow-darker @@ -509,17 +509,17 @@ globalkeys = awful.util.table.join( end), awful.key({ altkey, "Control" }, "Down", function () - awful.util.spawn_with_shell("mpc stop || ncmpcpp stop || ncmpc stop || pms stop") + awful.util.spawn_with_shell("mpc stop || ncmpc stop || pms stop") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Left", function () - awful.util.spawn_with_shell("mpc prev || ncmpcpp prev || ncmpc prev || pms prev") + awful.util.spawn_with_shell("mpc prev || ncmpc prev || pms prev") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Right", function () - awful.util.spawn_with_shell("mpc next || ncmpcpp next || ncmpc next || pms next") + awful.util.spawn_with_shell("mpc next || ncmpc next || pms next") mpdwidget.update() end), diff --git a/rc.lua.rainbow b/rc.lua.rainbow index f1a2b4c..a6e6103 100644 --- a/rc.lua.rainbow +++ b/rc.lua.rainbow @@ -455,17 +455,17 @@ globalkeys = awful.util.table.join( end), awful.key({ altkey, "Control" }, "Down", function () - awful.util.spawn_with_shell("mpc stop || ncmpcpp stop || ncmpc stop || pms stop") + awful.util.spawn_with_shell("mpc stop || ncmpc stop || pms stop") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Left", function () - awful.util.spawn_with_shell("mpc prev || ncmpcpp prev || ncmpc prev || pms prev") + awful.util.spawn_with_shell("mpc prev || ncmpc prev || pms prev") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Right", function () - awful.util.spawn_with_shell("mpc next || ncmpcpp next || ncmpc next || pms next") + awful.util.spawn_with_shell("mpc next || ncmpc next || pms next") mpdwidget.update() end), diff --git a/rc.lua.steamburn b/rc.lua.steamburn index 758b331..13b931b 100644 --- a/rc.lua.steamburn +++ b/rc.lua.steamburn @@ -464,17 +464,17 @@ globalkeys = awful.util.table.join( end), awful.key({ altkey, "Control" }, "Down", function () - awful.util.spawn_with_shell("mpc stop || ncmpcpp stop || ncmpc stop || pms stop") + awful.util.spawn_with_shell("mpc stop || ncmpc stop || pms stop") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Left", function () - awful.util.spawn_with_shell("mpc prev || ncmpcpp prev || ncmpc prev || pms prev") + awful.util.spawn_with_shell("mpc prev || ncmpc prev || pms prev") mpdwidget.update() end), awful.key({ altkey, "Control" }, "Right", function () - awful.util.spawn_with_shell("mpc next || ncmpcpp next || ncmpc next || pms next") + awful.util.spawn_with_shell("mpc next || ncmpc next || pms next") mpdwidget.update() end), From 978315c75420598651b6a9c015425641a2a9c98b Mon Sep 17 00:00:00 2001 From: Yuexiao Guo Date: Wed, 1 Oct 2014 11:49:17 -0400 Subject: [PATCH 4/5] added note in rc.lua.powerarrow-darker for alticons --- rc.lua.powerarrow-darker | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rc.lua.powerarrow-darker b/rc.lua.powerarrow-darker index 4ce641f..511d806 100644 --- a/rc.lua.powerarrow-darker +++ b/rc.lua.powerarrow-darker @@ -329,6 +329,8 @@ for s = 1, screen.count() do left_layout:add(spr) -- Widgets that are aligned to the upper right + -- If you are moving widgets from a section with light grey background to dark grey or vice versa, + -- use a replacement icon as appropriate from themes/powerarrow-darker/alticons so your icons match the bg. local right_layout = wibox.layout.fixed.horizontal() if s == 1 then right_layout:add(wibox.widget.systray()) end right_layout:add(spr) From db488692315e39850879d15d16d3227d7801a00a Mon Sep 17 00:00:00 2001 From: Yuexiao Guo Date: Wed, 1 Oct 2014 14:17:31 -0400 Subject: [PATCH 5/5] removed "alt_" prefixes --- .../alticons/{alt_ac.png => ac.png} | Bin .../alticons/{alt_battery.png => battery.png} | Bin .../{alt_battery_empty.png => battery_empty.png} | Bin .../{alt_battery_low.png => battery_low.png} | Bin .../alticons/{alt_cpu.png => cpu.png} | Bin .../alticons/{alt_dwindle.png => dwindle.png} | Bin .../alticons/{alt_fairh.png => fairh.png} | Bin .../alticons/{alt_fairv.png => fairv.png} | Bin .../alticons/{alt_floating.png => floating.png} | Bin .../alticons/{alt_hdd.png => hdd.png} | Bin .../alticons/{alt_magnifier.png => magnifier.png} | Bin .../alticons/{alt_mail.png => mail.png} | Bin .../alticons/{alt_mail_on.png => mail_on.png} | Bin .../alticons/{alt_max.png => max.png} | Bin .../alticons/{alt_mem.png => mem.png} | Bin .../alticons/{alt_net.png => net.png} | Bin .../alticons/{alt_net_wired.png => net_wired.png} | Bin .../alticons/{alt_note.png => note.png} | Bin .../alticons/{alt_note_on.png => note_on.png} | Bin .../alticons/{alt_scissors.png => scissors.png} | Bin .../alticons/{alt_spiral.png => spiral.png} | Bin .../alticons/{alt_task.png => task.png} | Bin .../alticons/{alt_temp.png => temp.png} | Bin .../alticons/{alt_tile.png => tile.png} | Bin .../alticons/{alt_tilebottom.png => tilebottom.png} | Bin .../alticons/{alt_tileleft.png => tileleft.png} | Bin .../alticons/{alt_tiletop.png => tiletop.png} | Bin .../alticons/{alt_vol.png => vol.png} | Bin .../alticons/{alt_vol_low.png => vol_low.png} | Bin .../alticons/{alt_vol_mute.png => vol_mute.png} | Bin .../alticons/{alt_vol_no.png => vol_no.png} | Bin 31 files changed, 0 insertions(+), 0 deletions(-) rename themes/powerarrow-darker/alticons/{alt_ac.png => ac.png} (100%) rename themes/powerarrow-darker/alticons/{alt_battery.png => battery.png} (100%) rename themes/powerarrow-darker/alticons/{alt_battery_empty.png => battery_empty.png} (100%) rename themes/powerarrow-darker/alticons/{alt_battery_low.png => battery_low.png} (100%) rename themes/powerarrow-darker/alticons/{alt_cpu.png => cpu.png} (100%) rename themes/powerarrow-darker/alticons/{alt_dwindle.png => dwindle.png} (100%) rename themes/powerarrow-darker/alticons/{alt_fairh.png => fairh.png} (100%) rename themes/powerarrow-darker/alticons/{alt_fairv.png => fairv.png} (100%) rename themes/powerarrow-darker/alticons/{alt_floating.png => floating.png} (100%) rename themes/powerarrow-darker/alticons/{alt_hdd.png => hdd.png} (100%) rename themes/powerarrow-darker/alticons/{alt_magnifier.png => magnifier.png} (100%) rename themes/powerarrow-darker/alticons/{alt_mail.png => mail.png} (100%) rename themes/powerarrow-darker/alticons/{alt_mail_on.png => mail_on.png} (100%) rename themes/powerarrow-darker/alticons/{alt_max.png => max.png} (100%) rename themes/powerarrow-darker/alticons/{alt_mem.png => mem.png} (100%) rename themes/powerarrow-darker/alticons/{alt_net.png => net.png} (100%) rename themes/powerarrow-darker/alticons/{alt_net_wired.png => net_wired.png} (100%) rename themes/powerarrow-darker/alticons/{alt_note.png => note.png} (100%) rename themes/powerarrow-darker/alticons/{alt_note_on.png => note_on.png} (100%) rename themes/powerarrow-darker/alticons/{alt_scissors.png => scissors.png} (100%) rename themes/powerarrow-darker/alticons/{alt_spiral.png => spiral.png} (100%) rename themes/powerarrow-darker/alticons/{alt_task.png => task.png} (100%) rename themes/powerarrow-darker/alticons/{alt_temp.png => temp.png} (100%) rename themes/powerarrow-darker/alticons/{alt_tile.png => tile.png} (100%) rename themes/powerarrow-darker/alticons/{alt_tilebottom.png => tilebottom.png} (100%) rename themes/powerarrow-darker/alticons/{alt_tileleft.png => tileleft.png} (100%) rename themes/powerarrow-darker/alticons/{alt_tiletop.png => tiletop.png} (100%) rename themes/powerarrow-darker/alticons/{alt_vol.png => vol.png} (100%) rename themes/powerarrow-darker/alticons/{alt_vol_low.png => vol_low.png} (100%) rename themes/powerarrow-darker/alticons/{alt_vol_mute.png => vol_mute.png} (100%) rename themes/powerarrow-darker/alticons/{alt_vol_no.png => vol_no.png} (100%) diff --git a/themes/powerarrow-darker/alticons/alt_ac.png b/themes/powerarrow-darker/alticons/ac.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_ac.png rename to themes/powerarrow-darker/alticons/ac.png diff --git a/themes/powerarrow-darker/alticons/alt_battery.png b/themes/powerarrow-darker/alticons/battery.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_battery.png rename to themes/powerarrow-darker/alticons/battery.png diff --git a/themes/powerarrow-darker/alticons/alt_battery_empty.png b/themes/powerarrow-darker/alticons/battery_empty.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_battery_empty.png rename to themes/powerarrow-darker/alticons/battery_empty.png diff --git a/themes/powerarrow-darker/alticons/alt_battery_low.png b/themes/powerarrow-darker/alticons/battery_low.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_battery_low.png rename to themes/powerarrow-darker/alticons/battery_low.png diff --git a/themes/powerarrow-darker/alticons/alt_cpu.png b/themes/powerarrow-darker/alticons/cpu.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_cpu.png rename to themes/powerarrow-darker/alticons/cpu.png diff --git a/themes/powerarrow-darker/alticons/alt_dwindle.png b/themes/powerarrow-darker/alticons/dwindle.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_dwindle.png rename to themes/powerarrow-darker/alticons/dwindle.png diff --git a/themes/powerarrow-darker/alticons/alt_fairh.png b/themes/powerarrow-darker/alticons/fairh.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_fairh.png rename to themes/powerarrow-darker/alticons/fairh.png diff --git a/themes/powerarrow-darker/alticons/alt_fairv.png b/themes/powerarrow-darker/alticons/fairv.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_fairv.png rename to themes/powerarrow-darker/alticons/fairv.png diff --git a/themes/powerarrow-darker/alticons/alt_floating.png b/themes/powerarrow-darker/alticons/floating.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_floating.png rename to themes/powerarrow-darker/alticons/floating.png diff --git a/themes/powerarrow-darker/alticons/alt_hdd.png b/themes/powerarrow-darker/alticons/hdd.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_hdd.png rename to themes/powerarrow-darker/alticons/hdd.png diff --git a/themes/powerarrow-darker/alticons/alt_magnifier.png b/themes/powerarrow-darker/alticons/magnifier.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_magnifier.png rename to themes/powerarrow-darker/alticons/magnifier.png diff --git a/themes/powerarrow-darker/alticons/alt_mail.png b/themes/powerarrow-darker/alticons/mail.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_mail.png rename to themes/powerarrow-darker/alticons/mail.png diff --git a/themes/powerarrow-darker/alticons/alt_mail_on.png b/themes/powerarrow-darker/alticons/mail_on.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_mail_on.png rename to themes/powerarrow-darker/alticons/mail_on.png diff --git a/themes/powerarrow-darker/alticons/alt_max.png b/themes/powerarrow-darker/alticons/max.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_max.png rename to themes/powerarrow-darker/alticons/max.png diff --git a/themes/powerarrow-darker/alticons/alt_mem.png b/themes/powerarrow-darker/alticons/mem.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_mem.png rename to themes/powerarrow-darker/alticons/mem.png diff --git a/themes/powerarrow-darker/alticons/alt_net.png b/themes/powerarrow-darker/alticons/net.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_net.png rename to themes/powerarrow-darker/alticons/net.png diff --git a/themes/powerarrow-darker/alticons/alt_net_wired.png b/themes/powerarrow-darker/alticons/net_wired.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_net_wired.png rename to themes/powerarrow-darker/alticons/net_wired.png diff --git a/themes/powerarrow-darker/alticons/alt_note.png b/themes/powerarrow-darker/alticons/note.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_note.png rename to themes/powerarrow-darker/alticons/note.png diff --git a/themes/powerarrow-darker/alticons/alt_note_on.png b/themes/powerarrow-darker/alticons/note_on.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_note_on.png rename to themes/powerarrow-darker/alticons/note_on.png diff --git a/themes/powerarrow-darker/alticons/alt_scissors.png b/themes/powerarrow-darker/alticons/scissors.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_scissors.png rename to themes/powerarrow-darker/alticons/scissors.png diff --git a/themes/powerarrow-darker/alticons/alt_spiral.png b/themes/powerarrow-darker/alticons/spiral.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_spiral.png rename to themes/powerarrow-darker/alticons/spiral.png diff --git a/themes/powerarrow-darker/alticons/alt_task.png b/themes/powerarrow-darker/alticons/task.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_task.png rename to themes/powerarrow-darker/alticons/task.png diff --git a/themes/powerarrow-darker/alticons/alt_temp.png b/themes/powerarrow-darker/alticons/temp.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_temp.png rename to themes/powerarrow-darker/alticons/temp.png diff --git a/themes/powerarrow-darker/alticons/alt_tile.png b/themes/powerarrow-darker/alticons/tile.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_tile.png rename to themes/powerarrow-darker/alticons/tile.png diff --git a/themes/powerarrow-darker/alticons/alt_tilebottom.png b/themes/powerarrow-darker/alticons/tilebottom.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_tilebottom.png rename to themes/powerarrow-darker/alticons/tilebottom.png diff --git a/themes/powerarrow-darker/alticons/alt_tileleft.png b/themes/powerarrow-darker/alticons/tileleft.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_tileleft.png rename to themes/powerarrow-darker/alticons/tileleft.png diff --git a/themes/powerarrow-darker/alticons/alt_tiletop.png b/themes/powerarrow-darker/alticons/tiletop.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_tiletop.png rename to themes/powerarrow-darker/alticons/tiletop.png diff --git a/themes/powerarrow-darker/alticons/alt_vol.png b/themes/powerarrow-darker/alticons/vol.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_vol.png rename to themes/powerarrow-darker/alticons/vol.png diff --git a/themes/powerarrow-darker/alticons/alt_vol_low.png b/themes/powerarrow-darker/alticons/vol_low.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_vol_low.png rename to themes/powerarrow-darker/alticons/vol_low.png diff --git a/themes/powerarrow-darker/alticons/alt_vol_mute.png b/themes/powerarrow-darker/alticons/vol_mute.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_vol_mute.png rename to themes/powerarrow-darker/alticons/vol_mute.png diff --git a/themes/powerarrow-darker/alticons/alt_vol_no.png b/themes/powerarrow-darker/alticons/vol_no.png similarity index 100% rename from themes/powerarrow-darker/alticons/alt_vol_no.png rename to themes/powerarrow-darker/alticons/vol_no.png