Search found 64 matches

by recobayu
Sun Apr 07, 2024 1:44 pm
Forum: FatDog64
Topic: Fatdog64-901 Final [10 Oct 2023]
Replies: 188
Views: 11374

Re: Fatdog64-901 Final [10 Oct 2023]

How to make initrd-nano in puppy linux?

by recobayu
Thu Apr 04, 2024 1:34 pm
Forum: FatDog64
Topic: Fatdog64-901 Final [10 Oct 2023]
Replies: 188
Views: 11374

Re: Fatdog64-901 Final [10 Oct 2023]

Hi fatdog and team.. Thank you for this very fast boot of fatdog. I use this option boot menu: title fatdog (sda3/fatdog) find --set-root uuid () 1785ce6e-d396-4a26-bec7-c850512b8179 kernel /fatdog/vmlinuz mergeinitrd1=local:/fatdog/initrd rootfstype=ramfs initrd /fatdog/initrd-nano I really watch m...
by recobayu
Mon Jan 08, 2024 2:22 pm
Forum: Development
Topic: GTKDIALOG - Red line creation
Replies: 1
Views: 235

Re: GTKDIALOG - Red line creation

Hi @don570 ,
I also have implement a 'line-like' using svg in gtkdialog calendar here:
viewtopic.php?p=51031#p51031

by recobayu
Tue Oct 24, 2023 2:16 pm
Forum: DebianDogs
Topic: Bookworm Build script
Replies: 278
Views: 186191

Re: Bookworm Build script

Hi @Fred ..
How to make the default user when we startx is puppy instead of root?
Thank you.

by recobayu
Sat Jul 29, 2023 2:36 pm
Forum: KLA
Topic: KLA-OT2baseCE-2.6 final - stable ( 846 MiB ) With Pamac package manager(AUR)
Replies: 18
Views: 1192

Re: KLA-OT2baseCE-2.6 final - stable ( 846 MiB ) With Pamac package manager(AUR)

Hi @Sofiya,
How to frugal install the iso to hard drive of flash disk?
Thank you.

by recobayu
Thu Jun 29, 2023 6:40 pm
Forum: Programming
Topic: How to use same function to Entry and Tree with different input?
Replies: 3
Views: 980

Re: How to use same function to Entry and Tree with different input?

Alhamdulillah finally i can use a function (info) in another function (search). And I use $1 as input of function. like this: #!/bin/bash # startm by recobayu # start menu like in cinnamon # 230630 start and stop using same key, does not implement history yet # support in terminal application like p...
by recobayu
Fri Feb 03, 2023 2:20 pm
Forum: Desktop
Topic: Make animation transition when change workspace in jwm
Replies: 1
Views: 644

Make animation transition when change workspace in jwm

Hi All. Is it possible to "create" an visual effect animation slide when we change workspace? Just like gnome, or KDE, or mac? In jwm?

by recobayu
Tue Aug 16, 2022 3:49 pm
Forum: Desktop
Topic: Stickyjwm and Stickyxfce-- Control Windows
Replies: 26
Views: 5094

Re: Stickyjwm and Stickyxfce-- Control Windows

I make this implementation of MochiMoppel 's idea. It flicker when change monitor to detect automatically whxy of fullscreen window. stickyxfce #!/bin/bash # 220321 partition screen into three height (h1 and h2 line as border) # and three width (w1 and w2 line as border) # 220503 add margins # 22081...
by recobayu
Fri May 20, 2022 7:23 am
Forum: Desktop
Topic: Stickyjwm and Stickyxfce-- Control Windows
Replies: 26
Views: 5094

Re: Stickyjwm and Stickyxfce-- Control Windows

Hi MochiMoppel , when I use type-hint="7", it give me wrong margin like this: margin top: 60 margin left: 1 margin bottom: 100 margin right: 100 and I think the window doesn't maximize. I try it on voidpup64. Update : This code is implement mochi's idea on multiple monitors to calculate th...
by recobayu
Wed May 18, 2022 8:55 am
Forum: Desktop
Topic: Stickyjwm and Stickyxfce-- Control Windows
Replies: 26
Views: 5094

Re: Stickyjwm and Stickyxfce-- Control Windows

Thank you, MochiMoppel . I try to make gui for configuration like this. stickyjwm-config.png and use your code: #!/bin/bash ## Read current screen dimension ARRAY=($(xwininfo -root)) SCREEN_W=${ARRAY[27]} SCREEN_H=${ARRAY[29]} ## Create 1px test window (no focus, no decoration, layer below, skip tas...
by recobayu
Sat May 07, 2022 3:56 pm
Forum: Desktop
Topic: Stickyjwm and Stickyxfce-- Control Windows
Replies: 26
Views: 5094

Re: Stickyjwm -- Control aspects of application windows

Thank you, wiak .. Using stickyxfce, we can make different position using the same shortcut/keybinding. Eventough multi monitor. Yes, i also sometimes use default keybinds of xfce to snap window to 9 positions using this keybinds: Win+u : top left Win+i : top half Win+o : top right Win+j : left half...
by recobayu
Fri May 06, 2022 8:18 pm
Forum: Desktop
Topic: Stickyjwm and Stickyxfce-- Control Windows
Replies: 26
Views: 5094

Re: Stickyjwm -- Control aspects of application windows

Thank you, rockedge .. It seems that the bottom tray covers the window. You can set the margin_bottom variable in the stickyxfce script manually to make it better. If you have three or more monitors, try stickyxfce to make the window play around the monitors. Question: How did you make the gif anima...
by recobayu
Tue May 03, 2022 2:30 pm
Forum: Desktop
Topic: Stickyjwm and Stickyxfce-- Control Windows
Replies: 26
Views: 5094

Re: Stickyjwm -- Control aspects of application windows

@rockedge, the variables:
margin_top=0
margin_left=0
margin_bottom=0
margin_right=0
Can be change manually. It is very good if you can make the gui configuration using gtkdialog to change that.
Thank you very much

by recobayu
Tue May 03, 2022 2:30 am
Forum: Desktop
Topic: Stickyjwm and Stickyxfce-- Control Windows
Replies: 26
Views: 5094

Re: Stickyjwm -- Control aspects of application windows

this script work on xfce I change on line 36: id_window=$(xprop -root|awk -F'[ ,]' '/_NET_ACTIVE_WINDOW\(WINDOW\)/{print $5}') stickyjwm-xfce or stickyxfce #!/bin/bash # 220321 partition screen into three height (h1 and h2 line as border) # and three width (w1 and w2 line as border) # 220503 add mar...
by recobayu
Fri Apr 08, 2022 8:07 am
Forum: DebianDogs
Topic: Bookworm Build script
Replies: 278
Views: 186191

Re: Bookworm Build script (testing)

fredx181 wrote: Wed Apr 06, 2022 3:49 pm
ralcocer wrote: Mon Apr 04, 2022 10:42 am

I always get and error with conky, anyone else?

I'm not getting any conky error, what exactly that you see is wrong ? And on which Desktop Environment ? More details, please.

Me too. I choose jwm.

by recobayu
Mon Mar 07, 2022 8:54 am
Forum: VoidPup
Topic: VoidPup32 and VoidPup64 Discussion
Replies: 303
Views: 64030

Re: VoidPup32 and VoidPup64 Discussion

Thank you, @peebee, Now I try this voidpup64. It is good. I hope the vpm can use tab for autocompletion.. I use `vpm s' first before install `vpm i'.

by recobayu
Tue Mar 01, 2022 5:44 pm
Forum: Desktop
Topic: Stickyjwm and Stickyxfce-- Control Windows
Replies: 26
Views: 5094

Re: Stickyjwm -- Control aspects of application windows

Hi All. I make this update of stickyjwm. Now, it can surf our entire monitor. I try using 3 monitors, and it runs well. It can detect our connected monitor and our active monitor In the linux mint, using winkey + arrow, the window only snap on the current monitor, if we want to teleport into another...
by recobayu
Sat Feb 26, 2022 6:32 pm
Forum: Programming
Topic: Gtkdialog Calendar
Replies: 18
Views: 1803

Re: Gtkdialog Calendar

Bug: Repeated date if the last number is on the first column. Changelog: Add hseparator and show-border="false" on notebook #!/bin/bash color="#398EE7" echo "$color" > selected_color mkdir -p number btn(){ for i in {1..7};do echo ' <hbox spacing="0">' for j in...
by recobayu
Sat Feb 26, 2022 5:05 pm
Forum: Programming
Topic: Gtkdialog Calendar
Replies: 18
Views: 1803

Re: Gtkdialog Calendar

Changelog: 1. Add today button on the top 2. Long Button on two decade, sensitive="false" 3. echo "click_date" when we click number and echo "Not a date" for else on terminal output 4. Exit by press Esc key #!/bin/bash color="#398EE7" echo "$color" ...
by recobayu
Fri Feb 25, 2022 7:21 pm
Forum: UbuntuDogs
Topic: FossaDog (Ubuntu 20.04 'Focal Fossa' LTS) 64-bit (updated 2020-11-15)
Replies: 133
Views: 30235

Re: FossaDog (Ubuntu 20.04 'Focal Fossa' LTS) 64-bit (updated 2020-11-15)

Hi Fred,
Now, there is an update of Ubuntu Fossa, 20.04.4.
Is there any update iso of FossaDog based of that?
Thank you.

by recobayu
Fri Feb 25, 2022 7:01 pm
Forum: Programming
Topic: Gtkdialog Calendar
Replies: 18
Views: 1803

Re: Gtkdialog Calendar

Thank you jamesbond for 2038 problem information. voidpup32 is still using that `date' command. But the problem does not appear in linux mint 20.3 because it is 64 bit OS. changelog: Now, we can change the year by two decades on the calendar. Also, the selected date is colored orange, echo-ed on ter...
by recobayu
Thu Feb 24, 2022 12:51 am
Forum: Programming
Topic: Gtkdialog Calendar
Replies: 18
Views: 1803

Re: Gtkdialog Calendar

I found the `date' command has limitation. # date --date='2038-1-20' date: invalid date ‘2038-1-20’ # date --date='2038-1-19' Tue Jan 19 12:00:00 AM WIB 2038 # The max date that still can be reach is on 19 Jan 2038. But when I use minixcal, it can reach year 2309 Is there any replacement of date com...
by recobayu
Wed Feb 23, 2022 10:54 am
Forum: Programming
Topic: Gtkdialog Calendar
Replies: 18
Views: 1803

Re: Gtkdialog Calendar

Changelog: Now, the selected month and "today" are colored. #!/bin/bash color="#398EE7" echo "$color" > selected_color btn(){ for i in {1..7};do echo ' <hbox spacing="0">' for j in {1..7};do echo ' <button relief="2" width-request="46" hei...
by recobayu
Wed Feb 23, 2022 9:18 am
Forum: Programming
Topic: Gtkdialog Calendar
Replies: 18
Views: 1803

Re: Gtkdialog Calendar

Thank you puppy_apprentice .. Now, We can change the year directly by pressing the "Month Year" button. I use notebook to "refresh" the gui. Here is the code: #!/bin/bash btn(){ for i in {1..7};do echo ' <hbox spacing="0">' for j in {1..7};do echo ' <button relief="...
by recobayu
Wed Feb 23, 2022 6:22 am
Forum: Programming
Topic: Gtkdialog Calendar
Replies: 18
Views: 1803

Re: Gtkdialog Calendar

what version of your puppylinux? slacko64 6.3.2 Hi puppy_apprentice , I try this code in slacko64 6.3.2. and I also got the same error. So, the solution is, replace the line cal "$m" "$Y"|tr -cd '\11\12\15\40\60-\136\140-\176'|sed -e '1d;s/\(..\)\(.\)/\1,/g' with this: cal "...
by recobayu
Tue Feb 22, 2022 7:09 pm
Forum: Programming
Topic: Gtkdialog Calendar
Replies: 18
Views: 1803

Re: Gtkdialog Calendar

This script can refresh the button's "label" by click the arrow previous and next month. Changelog: 1. Add arrow (previous and next) month 2. Grabfocus to current date 3. Using svg file as "label" of button grid feel free to give advice. Thank you #!/bin/bash btn(){ for i in {1.....
by recobayu
Tue Feb 22, 2022 4:45 pm
Forum: Programming
Topic: Gtkdialog Calendar
Replies: 18
Views: 1803

Re: Gtkdialog Calendar using SVG button

This calendar button using SVG file as input on it's number. #!/bin/bash btn(){ for i in {1..7};do echo ' <hbox spacing="0">' for j in {1..7};do echo ' <button relief="2" width-request="46" height-request="40"> <input file>number/grid_'$i$j'.svg</input> <actio...
by recobayu
Tue Feb 22, 2022 2:57 pm
Forum: Programming
Topic: Gtkdialog Calendar
Replies: 18
Views: 1803

Re: Gtkdialog Calendar

Hi @puppy_apprentice
what version of your puppylinux?
I try on several puppy (imppup64, slacko64, voidpup64), bullseye-dog, and linux mint 20.3, and it can run.

by recobayu
Tue Feb 22, 2022 8:29 am
Forum: Programming
Topic: Gtkdialog Calendar
Replies: 18
Views: 1803

Re: Gtkdialog Calendar

Month #!/bin/sh bln(){ m=1 for i in 1 2 3 4;do echo ' <hbox space-fill="true" space-expand="true">' for j in 1 2 3;do case $m in 1) b="Jan";; 2) b="Feb";; 3) b="Mar";; 4) b="Apr";; 5) b="Mei";; 6) b="Jun";; 7) b="Ju...
by recobayu
Tue Feb 22, 2022 5:20 am
Forum: Programming
Topic: Gtkdialog Calendar
Replies: 18
Views: 1803

Gtkdialog Calendar

The last and better version is on the last post. From this first post to the next, describing my code from simple to complex. Here is my simple calendar using gtkdialog: #!/bin/bash buat_tombol(){ echo ' <button width-request="50" height-request="50" relief="2"> <label>...

Go to advanced search