Compare commits
5 Commits
fe54184af6
...
4feed1672f
Author | SHA1 | Date | |
---|---|---|---|
|
4feed1672f | ||
|
9ae8541b92 | ||
|
7ce14fea34 | ||
|
cbf8de66c6 | ||
|
75172b7bc3 |
@ -5,7 +5,10 @@
|
||||
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
||||
|
||||
if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/tty1 ]]; then
|
||||
XDG_CURRENT_DESKTOP=sway exec dbus-run-session sway
|
||||
exec startx
|
||||
if [[ ! -z "$IS_LAPTOP" ]]; then
|
||||
exec startx
|
||||
else
|
||||
exec start-sway.sh
|
||||
fi
|
||||
fi
|
||||
|
||||
|
9
.bashrc
9
.bashrc
@ -35,6 +35,9 @@ if grep "arch-laptop" /etc/hostname &> /dev/null ; then
|
||||
export IS_LAPTOP=1
|
||||
fi
|
||||
|
||||
# Path to store working directory
|
||||
export WDIR_PATH="/tmp/$(id -u).wdir"
|
||||
|
||||
# include bash aliases
|
||||
if [ -f ~/.bash_aliases ]
|
||||
then
|
||||
@ -53,3 +56,9 @@ then
|
||||
source ~/.nnn_bookmarks
|
||||
fi
|
||||
|
||||
if [ -f $WDIR_PATH ]
|
||||
then
|
||||
wdir="$(cat $WDIR_PATH)"
|
||||
echo "Working directory from $WDIR_PATH"
|
||||
cd "$wdir"
|
||||
fi
|
||||
|
@ -50,7 +50,7 @@ schemes:
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
black: '#073642' # base02
|
||||
black: '#002b36' # base03
|
||||
red: '#dc322f' # red
|
||||
green: '#859900' # green
|
||||
yellow: '#b58900' # yellow
|
||||
@ -61,7 +61,7 @@ schemes:
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: '#002b36' # base03
|
||||
black: '#073642' # base02
|
||||
red: '#cb4b16' # orange
|
||||
green: '#586e75' # base01
|
||||
yellow: '#657b83' # base00
|
||||
|
@ -3,8 +3,9 @@
|
||||
# Copy this to ~/.config/sway/config and edit it to your liking.
|
||||
#
|
||||
# Read `man 5 sway` for a complete reference.
|
||||
exec dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway
|
||||
exec --no-startup-id dbus-update-activation-environment --all
|
||||
exec /usr/libexec/polkit-gnome-authentication-agent-1
|
||||
exec gentoo-pipewire-launcher
|
||||
|
||||
### Variables
|
||||
#
|
||||
|
@ -89,7 +89,7 @@ makemd()
|
||||
pandoc -t pdf $1 -o $(basename $1 .md).pdf
|
||||
}
|
||||
|
||||
# view zathrua in tabbed
|
||||
# view zathura in tabbed
|
||||
tzathura()
|
||||
{
|
||||
# rm tabbbed.xid if not running
|
||||
@ -99,3 +99,30 @@ tzathura()
|
||||
fi
|
||||
zathura "$@" -e $(</tmp/tabbed.xid) & disown
|
||||
}
|
||||
|
||||
wdir()
|
||||
{
|
||||
wdir="$PWD/$1"
|
||||
[ -d "$wdir" ] && echo "$wdir" > "$WDIR_PATH" && echo "set $wdir"
|
||||
}
|
||||
|
||||
pwdir()
|
||||
{
|
||||
if [ -f "$WDIR_PATH" ]
|
||||
then
|
||||
cat "$WDIR_PATH"
|
||||
else
|
||||
echo "Working directory not set."
|
||||
fi
|
||||
}
|
||||
|
||||
cwdir()
|
||||
{
|
||||
if [ -f "$WDIR_PATH" ]
|
||||
then
|
||||
rm -f "$WDIR_PATH"
|
||||
echo "Cleared working directory."
|
||||
else
|
||||
echo "Working directory not set."
|
||||
fi
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user