Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
byobu /
include /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-11-14 06:58
colors
1.02
KB
-rwxr-xr-x
2025-08-05 17:14
common
1.91
KB
-rwxr-xr-x
2025-08-05 17:14
config.py
10.46
KB
-rwxr-xr-x
2025-08-05 17:14
constants
2.65
KB
-rwxr-xr-x
2025-08-05 17:14
cycle-status
1.35
KB
-rwxr-xr-x
2025-08-05 17:14
dirs
2.4
KB
-rwxr-xr-x
2025-08-05 17:14
icons
1.84
KB
-rwxr-xr-x
2025-08-05 17:14
mondrian
4.49
KB
-rwxr-xr-x
2025-08-05 17:14
notify_osd
1.74
KB
-rwxr-xr-x
2025-08-05 17:14
select-session.py
6.66
KB
-rwxr-xr-x
2025-08-05 17:14
shutil
8.72
KB
-rwxr-xr-x
2025-08-05 17:14
tmux-detach-all-but-current-client
1.56
KB
-rwxr-xr-x
2025-08-05 17:14
tmux-send-command-to-all-panes
955
B
-rwxr-xr-x
2025-08-05 17:14
tmux-send-command-to-all-windows
881
B
-rwxr-xr-x
2025-08-05 17:14
toggle-utf8
1.71
KB
-rwxr-xr-x
2025-08-05 17:14
Save
Rename
#!/bin/sh # # cycle-status: cycle the status bar through multiple configurations # # Copyright (C) 2011-2014 Dustin Kirkland # # Authors: Dustin Kirkland <kirkland@byobu.org> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, version 3 of the License. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # Find line number of the enabled tmux_right current=$(grep -n "^tmux_right=" "$BYOBU_CONFIG_DIR/status" | awk -F: '{print $1}' | tail -n1) # Find next line number to enable all=$(grep -n "tmux_right=" "$BYOBU_CONFIG_DIR/status" | awk -F: '{print $1}') next= for i in $all $all; do if [ "$next" = "flagged" ]; then next="$i" break elif [ "$i" = "$current" ]; then next="flagged" fi done # Disable all sed -i -e "s/^tmux_right=/#tmux_right=/" "$BYOBU_CONFIG_DIR/status" # Enable the next one sed -i -e "${next}s/^#tmux_right=/tmux_right=/" "$BYOBU_CONFIG_DIR/status"