Compare commits
No commits in common. "master" and "v2.2" have entirely different histories.
4
README
|
|
@ -43,10 +43,6 @@ Note:
|
|||
- it will create ISO and TAR files for you in /tmp
|
||||
- make sure you have enough free space in /tmp to handle it
|
||||
|
||||
* If you want to use the Live Kit on a USB you have to either
|
||||
- use Windows to execute the bootinst.bat file in the $NAME/boot folder
|
||||
- or use Linux to execute the shellscript bootinst.sh in the $NAME/boot folder.
|
||||
|
||||
* You will need the following packages to be installed:
|
||||
- squashfs-tools
|
||||
- genisoimage or mkisofs
|
||||
|
|
|
|||
|
|
@ -1,10 +0,0 @@
|
|||
\l
|
||||
_ ____ _____
|
||||
| | / __ \\ / ____|
|
||||
__| |_ __ __ _| | | | (___
|
||||
/ _` | '_ \\ / _` | | | |\\___ \\
|
||||
| (_| | | | | (_| | |__| |____) |
|
||||
\\__,_|_| |_|\\__,_|\\____/|_____/
|
||||
|
||||
powered by Briq
|
||||
|
||||
|
|
@ -1,58 +0,0 @@
|
|||
#!/bin/bash
|
||||
# Author: Tomas M. <http://www.slax.org/>
|
||||
|
||||
usage()
|
||||
{
|
||||
echo ""
|
||||
echo "Convert directory to .sb compressed module"
|
||||
echo "Usage: $0 [source_directory.sb] [[target_file.sb]]"
|
||||
echo " If source_directory does not have .sb suffix and it is not 'squashfs-root',"
|
||||
echo " then the source_directory itself is included in the module and"
|
||||
echo " then the target_file.sb parameter is required."
|
||||
echo " If target_file.sb is not specified, the source_directory is erased"
|
||||
echo " and replaced by the newly generated module file."
|
||||
}
|
||||
|
||||
P1="$(readlink -f "$1")"
|
||||
P2="$(readlink -f "$2")"
|
||||
|
||||
if [ "$P1" = "$P2" ]; then
|
||||
P2=""
|
||||
fi
|
||||
|
||||
SB=$(echo "$P1" | grep -o "[.]sb/*\$")
|
||||
if [ "$(echo "$P1" | grep -o "/squashfs-root/*\$")" != "" ]; then
|
||||
SB="true"
|
||||
fi
|
||||
|
||||
if [ "$SB" = "" ]; then
|
||||
KEEP="-keep-as-directory"
|
||||
if [ "$P2" = "" ]; then
|
||||
usage
|
||||
exit 1
|
||||
fi
|
||||
else
|
||||
KEEP=""
|
||||
fi
|
||||
|
||||
if [ ! -d "$P1" ]; then
|
||||
echo "Not a directory: $P1" >&2
|
||||
exit 2
|
||||
fi
|
||||
|
||||
|
||||
if [ "$P2" = "" ]; then
|
||||
TARGET="$P1".sb
|
||||
while [ -e "$TARGET" ]; do TARGET="$TARGET"x; done
|
||||
mksquashfs "$P1" "$TARGET" -comp xz -b 1024K -always-use-fragments $KEEP >/dev/null || exit 3
|
||||
umount "$P1" 2>/dev/null
|
||||
rm -Rf "$P1"
|
||||
mv "$TARGET" "$P1"
|
||||
else
|
||||
if [ -e "$P2" ]; then
|
||||
echo "Target exists: $P2" >&2
|
||||
exit 4
|
||||
fi
|
||||
|
||||
mksquashfs "$P1" "$P2" -comp xz -b 1024K -always-use-fragments $KEEP >/dev/null
|
||||
fi
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
#! /bin/bash --
|
||||
|
||||
# Aggrega file di pacchetti installati o aggiornati con Pacman
|
||||
# dall'ultimo avvio di una distribuzione linux-live
|
||||
# (cfr. https://www.linux-live.org/ ) senza persistenza attivata,
|
||||
# creando un unico bundle .sb
|
||||
# I file vengono letti dalla directory changes e da essa filtrati solo
|
||||
# quelli appartenenti ai pacchetti di pacman.
|
||||
#
|
||||
# Autore: Guido Longoni <guidolongoni@gmail.com>
|
||||
|
||||
IFS=$'\n'
|
||||
OUTLST="/tmp/added_files_$$.lst"
|
||||
CACHEDIR=$(sed -n -e '/^[[:space:]]*CacheDir/s|^[^=]*=[[:space:]]*||gp' -e 's|[[:space:]]*$||g' /etc/pacman.conf | head -n1)
|
||||
OUTDIR="/tmp/sb_$$"
|
||||
OUTFILE="$OUTDIR".sb
|
||||
CHGDIR=$(realpath $(mount | sed -n -e '/squashfs/s|.* on \([^ ]*\)/.*|\1|gp' | head -n1)/../changes)
|
||||
|
||||
mkdir -p '/tmp'
|
||||
mkdir -p "$OUTDIR"
|
||||
rm -rf "$OUTLST"
|
||||
touch "$OUTLST"
|
||||
for i in $(find "$CACHEDIR" -iname '*.pkg.tar.xz'); do
|
||||
tar t -f $i >> "$OUTLST" 2>/dev/null
|
||||
done
|
||||
sort -u "$OUTLST" | grep -v '^\.' > "$OUTLST".tmp
|
||||
mv "$OUTLST".tmp "$OUTLST"
|
||||
rsync -av --old-d --files-from="$OUTLST" "$CHGDIR" "$OUTDIR"
|
||||
dir2sb "$OUTDIR" "$OUTFILE"
|
||||
rm -rf "$OUTDIR"
|
||||
rm -rf "$OUTLST"
|
||||
|
||||
|
|
@ -1,86 +0,0 @@
|
|||
#!/bin/bash
|
||||
# Rebuild initial ramdisk with full network drivers,
|
||||
# start DHCP and TFTP server in order to provide PXE service
|
||||
#
|
||||
# Author: Tomas M <www.slax.org>
|
||||
|
||||
LIVE=/run/initramfs
|
||||
FTPROOT=/var/state/dnsmasq/root
|
||||
|
||||
# find out our own IP address. If more interfaces are available, use the first one
|
||||
IP="$(hostname -I | cut -d " " -f 1)"
|
||||
GW=$(ip route show | grep default | grep -o "via.*" | head -n 1 | cut -d " " -f 2)
|
||||
|
||||
# if no IP is assigned to this computer, setup private address randomly
|
||||
if [ "$IP" = "" ]; then
|
||||
killall dhclient 2>/dev/null
|
||||
IP="10."$(($RANDOM/130+1))"."$(($RANDOM/130+1))".1"
|
||||
ifconfig $(ls -1 /sys/class/net | egrep -v '^lo$' | sort | head -n 1) $IP netmask 255.255.255.0
|
||||
fi
|
||||
|
||||
# if gateway is not recognized, lets make our IP a gateway and enable forwarding
|
||||
if [ "$GW" = "" ]; then
|
||||
GW="$IP"
|
||||
echo 1 > /proc/sys/net/ipv4/conf/all/forwarding
|
||||
echo 1 > /proc/sys/net/ipv6/conf/all/forwarding
|
||||
fi
|
||||
|
||||
echo Starting PXE server on $IP ...
|
||||
|
||||
# calculate C class range
|
||||
RANGE=$(echo $IP | cut -d "." -f 1-3)
|
||||
|
||||
# make sure dnsmasq can be started
|
||||
killall dnsmasq 2>/dev/null
|
||||
killall busybox 2>/dev/null
|
||||
rm -Rf $FTPROOT 2>/dev/null
|
||||
mkdir -p $FTPROOT/{pxelinux.cfg,tmp}/
|
||||
|
||||
# create root filesystem for ftfp
|
||||
cd $LIVE
|
||||
( find . -print | grep -v "memory"
|
||||
cd /
|
||||
find /lib/modules/$(uname -r)/kernel/drivers/net | grep -v wireless
|
||||
) | cpio -pvd $FTPROOT/tmp 2>/dev/null
|
||||
|
||||
cp /lib/modules/$(uname -r)/modules.* $FTPROOT/tmp/lib/modules/$(uname -r)
|
||||
depmod -b $FTPROOT/tmp
|
||||
rm $FTPROOT/tmp/lib/initramfs_escaped
|
||||
|
||||
# pack root in initramfs
|
||||
cd $FTPROOT/tmp
|
||||
find . -print | cpio -o -H newc 2>/dev/null | gzip -f --fast >../initrfs.img
|
||||
cd ..
|
||||
rm -Rf tmp
|
||||
|
||||
# link files here since copying is not necessary
|
||||
ln -s $(find $LIVE/memory/{data,iso,toram} 2>/dev/null | grep vmlinuz | head -n 1) $FTPROOT/vmlinuz
|
||||
ln -s $(find $LIVE/memory/{data,iso,toram} 2>/dev/null | grep pxelinux.0 | head -n 1) $FTPROOT/pxelinux.0
|
||||
ln -s $(find $LIVE/memory/{data,iso,toram} 2>/dev/null | grep ldlinux.c32 | head -n 1) $FTPROOT/ldlinux.c32
|
||||
|
||||
find $LIVE/memory/{data,iso,toram} 2>/dev/null | egrep "[.]sb\$" | sort -n | while read LINE; do
|
||||
BAS="$(basename "$LINE")"
|
||||
ln -s $LINE "$FTPROOT/$BAS"
|
||||
echo $BAS >> "$FTPROOT/PXEFILELIST"
|
||||
done
|
||||
|
||||
echo "This is <a href=http://www.slax.org/>Slax</a> PXE data server. PXE clients will download <a href=PXEFILELIST>file list</a>" > "$FTPROOT/index.html"
|
||||
|
||||
# default pxelinux configuration. Keep xmode selection for clients the same like for the server
|
||||
echo "
|
||||
PROMPT 0
|
||||
DEFAULT slax
|
||||
LABEL slax
|
||||
KERNEL /vmlinuz
|
||||
IPAPPEND 1
|
||||
APPEND initrd=/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 $(cat /proc/cmdline | egrep -o 'slax.flags=[^ ]+' | sed -r 's:[,=]pxe::' | sed -r 's:[,=]toram::')
|
||||
" > $FTPROOT/pxelinux.cfg/default
|
||||
|
||||
# start the DHCP server and TFTP server
|
||||
dnsmasq --enable-tftp --tftp-root=/var/state/dnsmasq/root \
|
||||
--dhcp-boot=pxelinux.0,"$IP",$IP \
|
||||
--dhcp-option=3,$GW \
|
||||
--dhcp-range=$RANGE.2,$RANGE.250,infinite --log-dhcp
|
||||
|
||||
# start HTTP server at port 7529 (that are the numbers you type on your phone to write 'slax')
|
||||
busybox httpd -p 7529 -h /var/state/dnsmasq/root
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
#!/bin/bash
|
||||
# Author: Tomas M. <http://www.slax.org/>
|
||||
|
||||
if [ ! -e "$1" ]; then
|
||||
echo
|
||||
echo "Erase module directory created by sb2dir"
|
||||
echo "Usage: $0 [source_directory.sb]"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -d "$1" ]; then
|
||||
echo "Directory does not exist: $1" >&2
|
||||
exit
|
||||
fi
|
||||
|
||||
umount "$1" 2>/dev/null
|
||||
rm -Rf "$1"
|
||||
|
|
@ -1,29 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ "$1" = "rm" ]; then
|
||||
shift
|
||||
rmsbdir "$@"
|
||||
exit $?
|
||||
fi
|
||||
|
||||
if [ "$1" = "rmdir" ]; then
|
||||
shift
|
||||
rmsbdir "$@"
|
||||
exit $?
|
||||
fi
|
||||
|
||||
if [ "$1" = "conv" ]; then
|
||||
shift
|
||||
fi
|
||||
|
||||
if [ ! -r "$1" ]; then
|
||||
echo File not found "$1"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -d "$1" ]; then
|
||||
dir2sb "$@"
|
||||
exit $?
|
||||
fi
|
||||
|
||||
sb2dir "$@"
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
#!/bin/bash
|
||||
# Author: Tomas M. <http://www.slax.org/>
|
||||
|
||||
if [ ! -e "$1" ]; then
|
||||
echo
|
||||
echo "Convert .sb compressed module into directory with the same name"
|
||||
echo "Usage: $0 [source_file.sb] [[optional output_directory]]"
|
||||
echo " If the output_directory is specified, it must exist"
|
||||
echo " If the output_directory is not specified, the name source_file.sb"
|
||||
echo " is used and the directory is overmounted with tmpfs"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -r "$1" ]; then
|
||||
echo "File does not exist: $1" >&2
|
||||
exit
|
||||
fi
|
||||
|
||||
if [ "$2" = "" ]; then
|
||||
SOURCE="$1".x
|
||||
while [ -e "$SOURCE" ]; do SOURCE="$SOURCE"x; done
|
||||
mv "$1" "$SOURCE" || exit
|
||||
mkdir "$1"
|
||||
mount -t tmpfs tmpfs "$1"
|
||||
unsquashfs -f -dest "$1" "$SOURCE" >/dev/null || exit
|
||||
rm "$SOURCE"
|
||||
else
|
||||
if [ ! -d "$2" ]; then
|
||||
echo "Directory does not exist: $2" >&2
|
||||
exit
|
||||
fi
|
||||
unsquashfs -f -dest "$2" "$1" >/dev/null
|
||||
fi
|
||||
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
|
@ -29,14 +29,14 @@ MENU TABMSG [F1] help [Ta
|
|||
LABEL default
|
||||
MENU LABEL Run Slax (Persistent changes)
|
||||
KERNEL /slax/boot/vmlinuz
|
||||
APPEND vga=normal initrd=/slax/boot/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 consoleblank=0 slax.flags=perch,automount
|
||||
APPEND vga=normal initrd=/slax/boot/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 slax.flags=perch,automount
|
||||
|
||||
LABEL perch
|
||||
MENU LABEL Run Slax (Fresh start)
|
||||
KERNEL /slax/boot/vmlinuz
|
||||
APPEND vga=normal initrd=/slax/boot/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 consoleblank=0 slax.flags=automount
|
||||
APPEND vga=normal initrd=/slax/boot/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 slax.flags=automount
|
||||
|
||||
LABEL toram
|
||||
MENU LABEL Run Slax (Copy to RAM)
|
||||
KERNEL /slax/boot/vmlinuz
|
||||
APPEND vga=normal initrd=/slax/boot/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 consoleblank=0 slax.flags=toram
|
||||
APPEND vga=normal initrd=/slax/boot/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 slax.flags=toram
|
||||
|
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.3 KiB |
|
|
@ -7,7 +7,7 @@ apt-get dist-upgrade --yes
|
|||
apt-get install --yes --no-install-recommends mc squashfs-tools genisoimage zip unzip psmisc net-tools \
|
||||
alsa-utils man less xz-utils ca-certificates openssl acpid acpi-support-base powermgmt-base bzip2 gpart \
|
||||
hdparm sdparm mdadm smartmontools dosfstools lsof htop gddrescue rsync netcat ssh gpm wireless-tools \
|
||||
ntfs-3g rfkill file dnsmasq ntpdate dvd+rw-tools usb-modeswitch pm-utils
|
||||
ntfs-3g rfkill file dnsmasq
|
||||
|
||||
ln -sf bash /bin/sh
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
apt update
|
||||
apt install --yes --no-install-recommends \
|
||||
apt-get update
|
||||
apt-get install --yes --no-install-recommends \
|
||||
firmware-linux-free \
|
||||
firmware-linux-nonfree \
|
||||
firmware-atheros \
|
||||
|
|
@ -13,8 +13,7 @@ apt install --yes --no-install-recommends \
|
|||
firmware-cavium \
|
||||
firmware-ipw2x00 \
|
||||
firmware-libertas \
|
||||
firmware-ti-connectivity \
|
||||
firmware-b43-installer
|
||||
firmware-ti-connectivity
|
||||
|
||||
. ../../cleanup
|
||||
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
apt-get update
|
||||
apt-get install --yes --no-install-recommends \
|
||||
xserver-xorg xserver-xorg-video-all xserver-xorg-video-intel \
|
||||
xserver-xorg \
|
||||
xinit \
|
||||
xterm \
|
||||
blackbox \
|
||||
|
|
@ -15,9 +15,6 @@ apt-get install --yes --no-install-recommends \
|
|||
libgl1-mesa-dri \
|
||||
libglu1-mesa
|
||||
|
||||
# Set setuid bit on xorg binary, so it can be started by guest user
|
||||
chmod u+s /usr/lib/xorg/Xorg
|
||||
|
||||
# use only white cursors. There were some troubles if the other cursors
|
||||
# was left behind, installing gtk apps reverted the cursor from white to gray,
|
||||
# so we're going to nuke it to leave only Snow cursors active.
|
||||
|
|
@ -39,4 +36,3 @@ update-alternatives --set x-terminal-emulator /usr/bin/xterm
|
|||
. /tmp/cleanup
|
||||
|
||||
savechanges /02-xorg.sb
|
||||
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
[Unit]
|
||||
Description=X-Window
|
||||
After=systemd-user-sessions.service
|
||||
|
||||
[Service]
|
||||
ExecStart=/bin/su --login -c /usr/bin/startx
|
||||
|
|
@ -26,5 +26,3 @@ Xft.hinting: true
|
|||
Xft.hintstyle: hintfull
|
||||
Xft.lcdfilter: lcdlegacy
|
||||
Xft.rgba: rgb
|
||||
|
||||
XTerm*selectToClipboard: true
|
||||
|
|
@ -64,10 +64,10 @@ cp debian/$NAME/usr/bin/fluxbox /squashfs-root/usr/bin
|
|||
|
||||
|
||||
# add xlunch from sources
|
||||
wget -O /tmp/xlunch.tar.gz https://github.com/Tomas-M/xlunch/archive/v4.5.3.tar.gz
|
||||
wget -O /tmp/xlunch.tar.gz https://github.com/Tomas-M/xlunch/archive/v3.2.13.tar.gz
|
||||
cd /tmp
|
||||
tar -xf xlunch.tar.gz
|
||||
cd xlunch-4.5.3
|
||||
cd xlunch-3.2.13
|
||||
make
|
||||
cp xlunch /squashfs-root/usr/bin
|
||||
cp extra/gentriesquick /squashfs-root/usr/bin/xlunch_genquick
|
||||
|
|
@ -28,10 +28,6 @@ done
|
|||
xsetroot -solid '#111111'
|
||||
xsetroot -xcf /usr/share/icons/breeze_cursors/cursors/watch 37
|
||||
|
||||
# disable screen blanking
|
||||
xset s off
|
||||
xset -dpms
|
||||
|
||||
# volume icon in system tray. Can fail if no soundcard is detected
|
||||
volumeicon &
|
||||
|
||||
|
|
@ -72,12 +68,7 @@ rm -f $SIGNAL2 2>/dev/null
|
|||
sleep 0.1
|
||||
done
|
||||
touch $SIGNAL2
|
||||
|
||||
(sleep 1; (echo; sleep 10; echo :quit) | xlunch --window --xposition 20 --yposition -30 \
|
||||
--width 195 --height 53 --noscroll --noprompt --backgroundcolor ffffff00 \
|
||||
--multiple --desktop --button "/usr/share/fluxbox/styles/Slax/pixmaps/start-here.png;;0,0;fbappselect" & ) &
|
||||
|
||||
exec compton --sw-opti -e 0.9 --shadow-exclude 'class_g="xlunch-windowed"' --fade-exclude 'role*="fluxbox-toolbar"' --opacity-rule '70:role*="fluxbox-toolbar"' --no-fading-destroyed-argb -D 5 -c -f -l -2 -t -2 -r 0 -o 1 -z --shadow-exclude 'bounding_shaped'
|
||||
exec compton --sw-opti -e 0.9 --fade-exclude 'role*="fluxbox-toolbar"' --opacity-rule '70:role*="fluxbox-toolbar"' --no-fading-destroyed-argb -D 5 -c -f -l -2 -t -2 -r 0 -o 1 -z --shadow-exclude 'bounding_shaped'
|
||||
) &
|
||||
|
||||
# We want to run systrayicon only after the volumeicon is started
|
||||
|
|
@ -1,11 +1,11 @@
|
|||
#!/bin/bash
|
||||
|
||||
COMMAND=$(
|
||||
xlunch_genquick 64 --desktop | \
|
||||
xlunch --border 7% --sideborder 10% --borderratio 100 --sideborderratio 50 \
|
||||
xlunch_genquick 64 | \
|
||||
xlunch --scroll --border 7% --sideborder 10% --borderratio 100 --sideborderratio 50 \
|
||||
--background /usr/share/wallpapers/slax_wallpaper.jpg --font DejaVuSans/11 \
|
||||
--voidclickterminate --iconpadding 40 --textpadding 10 \
|
||||
--leastmargin 6 --hidemissing --iconsize 64 \
|
||||
--paddingswap --leastmargin 6 --hidemissing --iconsize 64 \
|
||||
--highlight /usr/share/icons/hicolor/128x128/apps/xlunch_highlight.png \
|
||||
--outputonly
|
||||
)
|
||||
|
|
@ -16,12 +16,6 @@ fi
|
|||
|
||||
fbstartupnotify
|
||||
|
||||
# if command is a .desktop file, parse it
|
||||
if [[ "$COMMAND" =~ \.desktop ]]; then
|
||||
NoTerm="$(cat "$COMMAND" | grep Terminal\\s*= | grep -i "Terminal\\s*=\\s*false")"
|
||||
COMMAND="$(cat "$COMMAND" | grep Exec\\s*= | head -n 1 | sed -r s/.*=// | sed -r "s/%[^%]+//g")"
|
||||
fi
|
||||
|
||||
cmd="$(echo $COMMAND | sed -r "s/\\s.*//")"
|
||||
whi="$(which $cmd | head -n 1)"
|
||||
Xdep=$(ldd $whi | grep libX11)
|
||||
|
|
@ -32,7 +26,7 @@ if [ "$Ndep" != "" -o "$cmd" = "man" -o "$cmd" = "mc" ]; then
|
|||
WAIT=""
|
||||
fi
|
||||
|
||||
if [ "$Xdep" = "" -a "$cmd" != "chromium" -a "$cmd" != "wicd-manager" -a "$cmd" != "fbliveapp" -a "$NoTerm" = "" ]; then
|
||||
if [ "$Xdep" = "" -a "$cmd" != "chromium" -a "$cmd" != "wicd-manager" -a "$cmd" != "fbliveapp" ]; then
|
||||
exec xterm -ls -e bash --login -c -- "echo $USER@$HOSTNAME:$PWD# '$COMMAND'; $COMMAND; $WAIT"
|
||||
else
|
||||
exec $COMMAND
|
||||
|
|
@ -4,7 +4,7 @@ COMMAND=$(
|
|||
xlunch --input /etc/xlunch/logout.dsv --noprompt --border auto --sideborder auto --columns 3 --rows 1 \
|
||||
--background /usr/share/wallpapers/slax_wallpaper.jpg --font DejaVuSans/11 \
|
||||
--voidclickterminate --iconpadding 30 --textpadding 10 \
|
||||
--leastmargin 10 --hidemissing --iconsize 128 \
|
||||
--paddingswap --leastmargin 10 --hidemissing --iconsize 128 \
|
||||
--highlight /usr/share/icons/hicolor/128x128/apps/xlunch_highlight.png \
|
||||
--outputonly
|
||||
)
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
|
||||
SIGNAL=~/.fehbg
|
||||
rm -f $SIGNAL
|
||||
|
||||
OUTPUT=$(xrandr 2>/dev/null | grep 'connected' | cut -d " " -f 1)
|
||||
MODE=$1
|
||||
|
||||
xrandr --output $OUTPUT --mode $MODE
|
||||
|
||||
while [ -e $SIGNAL ]; do
|
||||
sleep 0.1
|
||||
done
|
||||
|
||||
killall -SIGUSR1 compton
|
||||
|
Before Width: | Height: | Size: 197 B After Width: | Height: | Size: 197 B |
|
Before Width: | Height: | Size: 197 B After Width: | Height: | Size: 197 B |
|
Before Width: | Height: | Size: 196 B After Width: | Height: | Size: 196 B |
|
Before Width: | Height: | Size: 171 B After Width: | Height: | Size: 171 B |
|
Before Width: | Height: | Size: 175 B After Width: | Height: | Size: 175 B |
|
Before Width: | Height: | Size: 171 B After Width: | Height: | Size: 171 B |
|
Before Width: | Height: | Size: 152 B After Width: | Height: | Size: 152 B |
|
Before Width: | Height: | Size: 152 B After Width: | Height: | Size: 152 B |
|
Before Width: | Height: | Size: 152 B After Width: | Height: | Size: 152 B |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.6 KiB |
|
Before Width: | Height: | Size: 543 B After Width: | Height: | Size: 543 B |
|
Before Width: | Height: | Size: 141 B After Width: | Height: | Size: 141 B |
|
Before Width: | Height: | Size: 536 B After Width: | Height: | Size: 536 B |
|
Before Width: | Height: | Size: 546 B After Width: | Height: | Size: 546 B |
|
Before Width: | Height: | Size: 410 B After Width: | Height: | Size: 410 B |
|
Before Width: | Height: | Size: 547 B After Width: | Height: | Size: 547 B |
|
Before Width: | Height: | Size: 334 B After Width: | Height: | Size: 334 B |
|
Before Width: | Height: | Size: 592 B After Width: | Height: | Size: 592 B |
|
Before Width: | Height: | Size: 394 B After Width: | Height: | Size: 394 B |