MX-21 fluxbox beta 1 feedback thread.
Re: MX-21 fluxbox beta 1 feedback thread.
Update to mxfb-quickshot creating two screenshot images (one in Downloads and the other in my Home folder). When I grab an active window or the desktop using the quickshot shortcut from the dock, feh opens with that preview. What I had been doing was to right click on feh's window and select save from the menu. That's where the second image is coming from. If I just close feh's window after grabbing the shot, I still have my image saved to Downloads but now I don't have an image in my home folder starting with feh_.
Is there a way I can tweak mxfb-quickshot so that it doesn't bring up feh's window in the first place. I really don't need a preview of my screen grab's.
Is there a way I can tweak mxfb-quickshot so that it doesn't bring up feh's window in the first place. I really don't need a preview of my screen grab's.
This is my Fluxbox . There are many others like it, but this one is mine. My Fluxbox is my best friend. It is my life.
I must master it as I must master my life. Without me, my Fluxbox is useless. Without my Fluxbox, I am useless.
I must master it as I must master my life. Without me, my Fluxbox is useless. Without my Fluxbox, I am useless.
- dolphin_oracle
- Developer
- Posts: 22125
- Joined: Sun Dec 16, 2007 12:17 pm
Re: MX-21 fluxbox beta 1 feedback thread.
ah, I need to check I bet I have a bunch of duplicate shots too
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Re: MX-21 fluxbox beta 1 feedback thread.
This straw may break the camel's back...
Production: 5.10, MX-23 Xfce, AMD FX-4130 Quad-Core, GeForce GT 630/PCIe/SSE2, 16 GB, SSD 120 GB, Data 1TB
Personal: Lenovo X1 Carbon with MX-23 Fluxbox
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin
Personal: Lenovo X1 Carbon with MX-23 Fluxbox
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin
Re: MX-21 fluxbox beta 1 feedback thread.
I was definitely having a PEBKAC moment. 

This is my Fluxbox . There are many others like it, but this one is mine. My Fluxbox is my best friend. It is my life.
I must master it as I must master my life. Without me, my Fluxbox is useless. Without my Fluxbox, I am useless.
I must master it as I must master my life. Without me, my Fluxbox is useless. Without my Fluxbox, I am useless.
Re: MX-21 fluxbox beta 1 feedback thread.
It is certainly possible to run quickshot without the feh part. I'm thinking of popping up a dialog box instead saying it was saved to XX with a View button. But not right now... Here is the quickshot code without the feh component.
Code: Select all
#!/bin/bash
## this app was developed by tenner and can be downloaded in its original at http://tenr.de/snippets/scripts/shot.sh
## it was modified for use with MX-Fluxbox and released October 2020 under GPLv3
## reworked by MX Devs for use of a config file April 2021
DESTDIR="${HOME}/Pictures"
NAME="`date +%y%m%d_%M%S_`\$wx\$h"
SUF="png"
PRE=""
if [ ! -f "$HOME/.config/MX-Linux/mxfb-quickshot.conf" ]; then
cp /usr/share/mxfb-quickshot/mxfb-quickshot.conf $HOME/.config/MX-Linux/mxfb-quickshot.conf;
fi
source ${HOME}/.config/MX-Linux/mxfb-quickshot.conf
display_help() {
cat << EOF
Usage: `basename "$0"` [-r/r/-w/w/-b/b] [-png|png|-jpg|jpg]
EOF
}
take_shot() {
scrot ${OPTION} "${PRE}${NAME}.${SUF}" -e 'mv $f '$DESTDIR' '
}
if [ $# -gt 2 ]
then
display_help
exit 1
elif [ $# -eq 0 ]
then
take_shot
exit 0
else
case "$1" in
-r|r|-R|-r|root|Root|-root|-Root)
OPTION=""
;;
-w|w|-W|-W|window|Window|-window|-Window)
OPTION="-s"
#PRE="part_"
;;
-b|b|-B|-B|border|Border)
OPTION="-sb"
#PRE="part_"
;;
*)
display_help
exit 1
esac
case "$2" in
jpg|JPG|-jpg|-JPG)
SUF="jpg"
;;
png|PNG|-png|-PNG)
SUF="png"
;;
*)
display_help
exit 1
esac
take_shot
exit 0
fi
Production: 5.10, MX-23 Xfce, AMD FX-4130 Quad-Core, GeForce GT 630/PCIe/SSE2, 16 GB, SSD 120 GB, Data 1TB
Personal: Lenovo X1 Carbon with MX-23 Fluxbox
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin
Personal: Lenovo X1 Carbon with MX-23 Fluxbox
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin
Re: MX-21 fluxbox beta 1 feedback thread.
Thank you so much. It's perfect.Jerry3904 wrote: Mon Aug 30, 2021 5:30 pm It is certainly possible to run quickshot without the feh part. I'm thinking of popping up a dialog box instead saying it was saved to XX with a View button. But not right now... Here is the quickshot code without the feh component.Code: Select all
#!/bin/bash ## this app was developed by tenner and can be downloaded in its original at http://tenr.de/snippets/scripts/shot.sh ## it was modified for use with MX-Fluxbox and released October 2020 under GPLv3 ## reworked by MX Devs for use of a config file April 2021 DESTDIR="${HOME}/Pictures" NAME="`date +%y%m%d_%M%S_`\$wx\$h" SUF="png" PRE="" if [ ! -f "$HOME/.config/MX-Linux/mxfb-quickshot.conf" ]; then cp /usr/share/mxfb-quickshot/mxfb-quickshot.conf $HOME/.config/MX-Linux/mxfb-quickshot.conf; fi source ${HOME}/.config/MX-Linux/mxfb-quickshot.conf display_help() { cat << EOF Usage: `basename "$0"` [-r/r/-w/w/-b/b] [-png|png|-jpg|jpg] EOF } take_shot() { scrot ${OPTION} "${PRE}${NAME}.${SUF}" -e 'mv $f '$DESTDIR' ' } if [ $# -gt 2 ] then display_help exit 1 elif [ $# -eq 0 ] then take_shot exit 0 else case "$1" in -r|r|-R|-r|root|Root|-root|-Root) OPTION="" ;; -w|w|-W|-W|window|Window|-window|-Window) OPTION="-s" #PRE="part_" ;; -b|b|-B|-B|border|Border) OPTION="-sb" #PRE="part_" ;; *) display_help exit 1 esac case "$2" in jpg|JPG|-jpg|-JPG) SUF="jpg" ;; png|PNG|-png|-PNG) SUF="png" ;; *) display_help exit 1 esac take_shot exit 0 fi
This is my Fluxbox . There are many others like it, but this one is mine. My Fluxbox is my best friend. It is my life.
I must master it as I must master my life. Without me, my Fluxbox is useless. Without my Fluxbox, I am useless.
I must master it as I must master my life. Without me, my Fluxbox is useless. Without my Fluxbox, I am useless.
- chrispop99
- Global Moderator
- Posts: 3343
- Joined: Tue Jan 27, 2009 2:07 pm
Re: MX-21 fluxbox beta 1 feedback thread.
On a machine with a graphics resolution of 1280x800, 'Common Settings' cuts off the icons on the right hand side.
Chris
Chris
You do not have the required permissions to view the files attached to this post.
MX Facebook Group Administrator.
Home-built desktop - Core i5 9400, 970 EVO Plus, 8GB
DELL XPS 15
Lots of test machines
Home-built desktop - Core i5 9400, 970 EVO Plus, 8GB
DELL XPS 15
Lots of test machines
Re: MX-21 fluxbox beta 1 feedback thread.
What happens if you readjust the window size >> narrower? Adrian's new build should rescale I think.
Production: 5.10, MX-23 Xfce, AMD FX-4130 Quad-Core, GeForce GT 630/PCIe/SSE2, 16 GB, SSD 120 GB, Data 1TB
Personal: Lenovo X1 Carbon with MX-23 Fluxbox
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin
Personal: Lenovo X1 Carbon with MX-23 Fluxbox
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin
- chrispop99
- Global Moderator
- Posts: 3343
- Joined: Tue Jan 27, 2009 2:07 pm
Re: MX-21 fluxbox beta 1 feedback thread.
At different window sizes the icons may fit properly; at intermediate positions, for example when going from 2 icons across to 3 icons across, the truncation occurs. At the resolution of this particular machine, that truncation happens when the window is maximised.Jerry3904 wrote: Tue Aug 31, 2021 8:32 am What happens if you readjust the window size >> narrower? Adrian's new build should rescale I think.
Chris
MX Facebook Group Administrator.
Home-built desktop - Core i5 9400, 970 EVO Plus, 8GB
DELL XPS 15
Lots of test machines
Home-built desktop - Core i5 9400, 970 EVO Plus, 8GB
DELL XPS 15
Lots of test machines
Re: MX-21 fluxbox beta 1 feedback thread.
Hello:
I'm a little late and I don't know if this is already reported?
I was finally able to install MX21 Fluxbox on my test laptop.
In the usblive I could remove the desktop wallpaper and leave it with nothing, or change to another image, but in the MX installed from the Desktop app, it does not change to any wallpaper, nor do I see a way to leave it without any...
The beta is installed and updated as of today.
Here the information of the laptop.
EDITED:
I also set the Desktop app to change wallpaper every 1 minute randomly, and nothing happens....
EDITED:
Changing the desktop wallpaper only works from "Right-click->Appearance->Wallpaper...".
Best regards
I'm a little late and I don't know if this is already reported?
I was finally able to install MX21 Fluxbox on my test laptop.
In the usblive I could remove the desktop wallpaper and leave it with nothing, or change to another image, but in the MX installed from the Desktop app, it does not change to any wallpaper, nor do I see a way to leave it without any...
The beta is installed and updated as of today.
Here the information of the laptop.
Code: Select all
System: Host: <filter> Kernel: 5.10.0-8-686-pae i686 bits: 32 compiler: N/A
parameters: BOOT_IMAGE=/boot/vmlinuz-5.10.0-8-686-pae
root=UUID=<filter> ro quiet splash
Desktop: Fluxbox 1.3.7 info: tint2 dm: LightDM 1.26.0
Distro: MX-21_fluxbox_beta1_386 Wildflower August 20 2021
base: Debian GNU/Linux 11 (bullseye)
Machine: Type: Other-vm? System: Acer product: Aspire 5715Z v: V1.45 serial: <filter>
Mobo: Acer model: Acadia v: V1.45 serial: <filter> BIOS: Acer v: 1.45
date: 11/10/2008
Battery: ID-1: BAT0 charge: 38.1 Wh condition: 38.1/48.8 Wh (78%) volts: 12.5/11.1
model: SANYO GC86508SAT0 type: Li-ion serial: N/A status: Full
Device-1: hidpp_battery_0 model: Logitech Wireless Mouse M215 2nd Gen
serial: <filter> charge: 100% (should be ignored) rechargeable: yes
status: Discharging
CPU: Topology: Dual Core model: Intel Pentium Dual T2370 bits: 64 type: MCP
arch: Core Merom family: 6 model-id: F (15) stepping: D (13) microcode: A4
L2 cache: 1024 KiB
flags: lm nx pae sse sse2 sse3 ssse3 bogomips: 6915
Speed: 1452 MHz min/max: 800/1733 MHz Core speeds (MHz): 1: 1362 2: 1357
Vulnerabilities: Type: itlb_multihit status: KVM: VMX unsupported
Type: l1tf mitigation: PTE Inversion
Type: mds status: Vulnerable: Clear CPU buffers attempted, no microcode; SMT disabled
Type: meltdown mitigation: PTI
Type: spec_store_bypass status: Vulnerable
Type: spectre_v1 mitigation: usercopy/swapgs barriers and __user pointer sanitization
Type: spectre_v2 mitigation: Full generic retpoline, STIBP: disabled, RSB filling
Type: srbds status: Not affected
Type: tsx_async_abort status: Not affected
Graphics: Device-1: Intel Mobile GM965/GL960 Integrated Graphics vendor: Acer Incorporated ALI
driver: i915 v: kernel bus ID: 00:02.0 chip ID: 8086:2a02
Display: x11 server: X.Org 1.20.11 driver: modesetting unloaded: fbdev,vesa
resolution: 1280x800~60Hz
OpenGL: renderer: Mesa DRI Intel 965GM (CL) v: 2.1 Mesa 20.3.5 direct render: Yes
Audio: Device-1: Intel 82801H HD Audio vendor: Acer Incorporated ALI driver: snd_hda_intel
v: kernel bus ID: 00:1b.0 chip ID: 8086:284b
Sound Server: ALSA v: k5.10.0-8-686-pae
Network: Device-1: Broadcom and subsidiaries NetLink BCM5906M Fast Ethernet PCI Express
vendor: Acer Incorporated ALI driver: tg3 v: kernel port: 5000 bus ID: 05:00.0
chip ID: 14e4:1713
IF: eth0 state: down mac: <filter>
Device-2: Qualcomm Atheros AR242x / AR542x Wireless Network Adapter
vendor: AMBIT Microsystem AR5BXB63 802.11bg NIC driver: ath5k v: kernel port: 5000
bus ID: 06:00.0 chip ID: 168c:001c
IF: wlan0 state: up mac: <filter>
Drives: Local Storage: total: 465.76 GiB used: 4.95 GiB (1.1%)
ID-1: /dev/sda vendor: Hitachi model: HTS547550A9E384 size: 465.76 GiB block size:
physical: 4096 B logical: 512 B speed: 3.0 Gb/s rotation: 5400 rpm serial: <filter>
rev: A60A scheme: MBR
Partition: ID-1: / raw size: 60.00 GiB size: 58.76 GiB (97.93%) used: 4.89 GiB (8.3%) fs: ext4
dev: /dev/sda3
ID-2: swap-1 size: 4.00 GiB used: 62.4 MiB (1.5%) fs: swap
swappiness: 15 (default 60) cache pressure: 100 (default) dev: /dev/sda2
Sensors: System Temperatures: cpu: 65.0 C mobo: N/A
Fan Speeds (RPM): N/A
Repos: No active apt repos in: /etc/apt/sources.list
Active apt repos in: /etc/apt/sources.list.d/debian-stable-updates.list
1: deb http://deb.debian.org/debian bullseye-updates main contrib non-free
Active apt repos in: /etc/apt/sources.list.d/debian.list
1: deb http://deb.debian.org/debian bullseye main contrib non-free
2: deb http://security.debian.org/debian-security bullseye-security main contrib non-free
Active apt repos in: /etc/apt/sources.list.d/mx.list
1: deb http://ftp.cica.es/mirrors/Linux/MX-Packages/mx/repo/ bullseye main non-free
No active apt repos in: /etc/apt/sources.list.d/various.list
Info: Processes: 192 Uptime: 2h 11m Memory: 1.96 GiB used: 1.20 GiB (61.1%) Init: SysVinit
v: 2.96 runlevel: 5 default: 5 Compilers: gcc: 10.2.1 alt: 10 Shell: quick-system-in
running in: quick-system-in inxi: 3.0.36
I also set the Desktop app to change wallpaper every 1 minute randomly, and nothing happens....
EDITED:
Changing the desktop wallpaper only works from "Right-click->Appearance->Wallpaper...".
Best regards
Last edited by Senpai on Wed Sep 01, 2021 1:08 pm, edited 2 times in total.