diff --git a/X/cmatrixlock.sh b/X/cmatrixlock.sh deleted file mode 100755 index e7d64f1..0000000 --- a/X/cmatrixlock.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -i3-sensible-terminal -e cmatrix & -xtrlock -kill -9 $(pgrep cmatrix) diff --git a/X/homepage.html b/X/homepage.html deleted file mode 100644 index 2c34f7c..0000000 --- a/X/homepage.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - -Start Page - - - - -
-
- - - - diff --git a/X/i3.config b/X/i3.config index e187951..70a0730 100644 --- a/X/i3.config +++ b/X/i3.config @@ -153,13 +153,13 @@ bindsym $mod+r mode "resize" # Start i3bar to display a workspace bar (plus the system information i3status # finds out, if available) bar { - status_command i3status -c /home/george/.i3status.conf + status_command i3status -c /home/asara/.config/i3/i3status.conf } # F key commands # Lock -bindsym $mod+F5 exec i3lock -n -c 000000 -i /tmp/wallpaper +bindsym $mod+F5 exec slimlock bindsym $mod+F6 exec xbacklight -dec 5 bindsym $mod+F7 exec xbacklight -inc 2 @@ -179,4 +179,3 @@ assign [class="Pidgin"] $ws9 # Load exec xbacklight -set 20 exec nm-applet -exec feh --bg-fill /tmp/wallpaper diff --git a/X/isslock.sh b/X/isslock.sh deleted file mode 100755 index 181dab7..0000000 --- a/X/isslock.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -i3-sensible-terminal -e livestreamer -Q http://ustream.tv/channel/iss-hdev-payload best --player 'mpv --fs ' & -xtrlock -kill -9 $(ps aux | grep 'mpv' | grep -v grep | awk '{print $2}') diff --git a/X/wallpaper.service b/X/wallpaper.service deleted file mode 100644 index 515f688..0000000 --- a/X/wallpaper.service +++ /dev/null @@ -1,10 +0,0 @@ -[Unit] -Description=Sets wallpaper across slim/i3/i3lock -Before=slim.service - -[Service] -Type=oneshot -ExecStart=/home/USER/.wallpaper.sh - -[Install] -WantedBy=multi-user.target diff --git a/X/wallpaper.sh b/X/wallpaper.sh deleted file mode 100755 index d73f260..0000000 --- a/X/wallpaper.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -# Set Slim background file here -SLIM="/usr/share/slim/themes/default/background.jpg" -# Set directory with wallpapers here -WPDIR="/home/$USER/macros/wallpapers/" - - -WP=$WPDIR$(ls -a $WPDIR | shuf -n 1) - -# Set random wallpaper as Slim background -cp $WP $SLIM - -# Symlink the wallpaper -ln -s $WP /tmp/wallpaper diff --git a/update b/update deleted file mode 100644 index 299a687..0000000 --- a/update +++ /dev/null @@ -1,33 +0,0 @@ -# Pacman/Yaourt -if command -v 'pacman' >/dev/null $$ [[ $?==0 ]]; then - alias distro='echo Arch' - alias install='yaourt -S ' - alias fupdate='echo "Updating system" && yaourt -Syyua --devel && echo "Cleaning" && sudo pacman -Rs $(pacman -Qtdq))' - alias search='yaourt -Ss ' - alias paccache='paccache -rv' -fi - -# Debian -if command -v 'apt-get' >/dev/null && [[ $?==0 ]]; then - alias distro='echo Debian' - alias install='sudo apt-get install ' - alias fupdate='sudo apt-get update && sudo apt-get upgrade && sudo apt-get dist-upgrade' - alias search='sudo apt-cache search ' -fi - -# RHEL -if command -v 'yum' >/dev/null && [[ $?==0 ]]; then - alias distro='echo Red Hat' - alias install='sudo yum install ' - alias fupdate='sudo yum upgrade' - alias search='sudo yum search ' -fi - -# Gentoo -if command -v 'emerge' >/dev/null && [[ $?==0 ]]; then - alias distro='echo Gentoo' - alias install='sudo emerge -av ' - echo -e "Updating ports \n\n\n" && sudo emerge-webrsync && echo -e "Updating system\n\n\n" && sudo emerge --update --deep --with-bdeps=y --newuse --ask @world && echo "Rebuilding preserved" && sudo emerge @preserved-rebuild && echo -e "Cleaning \n\n\n" && sudo emerge --depclean - alias search='emerge --search ' -fi -