Really? It should be part of 001-core.xzm:
Code: Select all
guest@porteus:/mnt/live/memory/images$ find .|grep .bashrc
./001-core.xzm/home/guest/.bashrc
./001-core.xzm/root/.bashrc
Really? It should be part of 001-core.xzm:
Code: Select all
guest@porteus:/mnt/live/memory/images$ find .|grep .bashrc
./001-core.xzm/home/guest/.bashrc
./001-core.xzm/root/.bashrc
Code: Select all
guest@porteus:~$ find .|grep .bashrc
./.bashrc
guest@porteus:~$ ls ./.bashrc
./.bashrc
guest@porteus:~$ cat ./.bashrc
# Setup color scheme <brokenman> for list call
alias ll='/bin/ls --color=auto -lF'
alias la='/bin/ls --color=auto -axF'
alias ls='/bin/ls --color=auto -xF'
# Append any additional sh scripts found in /etc/profile.d/:
:
:
And actually it is not .bachrc either.
Unlike with AppleOS or SM-Witless, you tend to learn stuff on Linux. Not just, as we call it in German, Clicky-Bunty, could be translated as Clicky-Colour'y, meaning it is only about the GUI, and never about a shell, a terminal or a virtual terminal.
Code: Select all
guest@porteus:~$ psg weath
2501 ? Sl 0:02 python /usr/bin/indicator-weather
guest@porteus:~$
Picky, picky, picky.
psg stands for ps grep. The only trick is that it omits the grep part itself, so, searching anything with "grep" in it will fail. I was just annoyed that I always got one hit more than I wanted, so I came up with omitting grep itself. That's what the "| /bin/grep -v grep" part is doing.Ed_P wrote: ↑07 Feb 2019, 16:07Of course I have no idea what it means.Code: Select all
guest@porteus:~$ psg weath 2501 ? Sl 0:02 python /usr/bin/indicator-weather guest@porteus:~$
![]()
Not every one is USA based, would you like it when every software forced °C, metre and military time on you?
Oh, requesting is always good, at times it succeeds, at times it does not. But we should think positively, we don't know the person or persons who coded it, so maybe she or he would appreciate our input.
And a bug report. But since I don't know for which DE the simple-weather-indicator-x86_64-20190206.xzm is meant to run, it is questionable if the application creator(s) would be interested in that bug report below at all. Since Openbox ( running on a dev version of a live Linux to boot) is not a DE, but a mere simple window manager.
Code: Select all
guest@porteus:/$ psg weath
5425 tty2 Sl 0:04 python /usr/bin/indicator-weather
26053 tty2 Sl 0:06 python /usr/bin/indicator-weather
guest@porteus:/$ kill 5425
guest@porteus:/$ psg weath
26053 tty2 Sl 0:06 python /usr/bin/indicator-weather
guest@porteus:/$ kill 26053
guest@porteus:/$ psg weath
guest@porteus:/$ ( indicator-weather & 2>&1 >/dev/null )
(indicator-weather:13262): Gdk-CRITICAL **: 06:38:36.8 & 2>&1 >/dev/null )97: gdk_window_thaw_toplevel_updates: assertion 'window->update_and_descendants_freeze_count > 0' failed
guest@porteus:/$ psg weath
13262 pts/3 Sl 0:02 python /usr/bin/indicator-weather
Ya might want to edit this line.Rava wrote:clicking on the icon did nothing. Trying to cguest@porteus:/$ kill 26053heck if the top info of it gave some info, e.g. if
Code: Select all
17 # Author(s):
18 # (C) 2015 Kasra Madadipouya <[email protected]>
250 last_update = 'Last Update: ' + time.strftime("%I:%M:%S %p")
That seems to be the line.Ed_P wrote: ↑09 Feb 2019, 00:42Code: Select all
250 last_update = 'Last Update: ' + time.strftime("%I:%M:%S %p")
Code: Select all
root@porteus:~# diff /usr/lib/ubuntu-indicator-weather/indicator-weather /mnt/live/memory/images/simple-weather-indicator-x86_64-20190206.xzm/usr/lib/ubuntu-indicator-weather/indicator-weather
19c19
< ## ## hacked into using 24 hrs time format by Rava@porteus, thanks to Ed_P@porteus for pointing the code line out to me.
---
>
250c250
< last_update = 'Last Update: ' + time.strftime("%H:%M:%S")
---
> last_update = 'Last Update: ' + time.strftime("%I:%M:%S %p")
Code: Select all
443fb7b83bf10060384acc607a35386d 025-simple-weather-indicator-x86_64-20190206_rava_hacked.xzm
1351680 bytes (1.29 MB)
No, I tested the python script file itself, prior creating my hacked_rava.xzm module. I just exited simple weather Indicator and restarted it via Menu/Utility/Simple Weather Indicator.