Merge branch 'master' of https://github.com/Chostakovitch/dotfiles
commit
3d7c6fe710
|
@ -159,7 +159,7 @@ bindsym $mod+l exec --no-startup-id $Locker && sleep 1
|
||||||
#Lock and suspend to RAM
|
#Lock and suspend to RAM
|
||||||
bindsym $mod+Shift+l exec --no-startup-id $Locker && systemctl suspend
|
bindsym $mod+Shift+l exec --no-startup-id $Locker && systemctl suspend
|
||||||
exec_always --no-startup-id xset dpms 600
|
exec_always --no-startup-id xset dpms 600
|
||||||
exec_always --no-startup-id xautolock -time 9 -locker $Locker
|
exec_always --no-startup-id xautolock -time 9 -locker $Locker -corners ----
|
||||||
|
|
||||||
#Notifications
|
#Notifications
|
||||||
exec --no-startup-id dunst
|
exec --no-startup-id dunst
|
||||||
|
|
|
@ -8,7 +8,7 @@ vlc.*?2$
|
||||||
|
|
||||||
# == Firefox, all tabs mixed in one : volume per tab is managed through players directly ==
|
# == Firefox, all tabs mixed in one : volume per tab is managed through players directly ==
|
||||||
# FF Left
|
# FF Left
|
||||||
.*?:AudioStream.*?0$
|
.*?:Audio.*?0$
|
||||||
.*:Firefox/in-1
|
.*:Firefox/in-1
|
||||||
|
|
||||||
# FF Right
|
# FF Right
|
||||||
|
@ -20,4 +20,4 @@ Pianoteq.*?1$
|
||||||
.*:PianoTeq/in-1
|
.*:PianoTeq/in-1
|
||||||
|
|
||||||
Pianoteq.*?2$
|
Pianoteq.*?2$
|
||||||
.*:PianoTeq/in-2
|
.*:PianoTeq/in-2
|
||||||
|
|
|
@ -51,7 +51,7 @@ module-margin-right = 4
|
||||||
|
|
||||||
modules-left = powermenu system-uptime-pretty
|
modules-left = powermenu system-uptime-pretty
|
||||||
modules-center = xwindow
|
modules-center = xwindow
|
||||||
modules-right = gmail system-usb-udev volume date
|
modules-right = system-usb-udev volume date
|
||||||
|
|
||||||
tray-position = right
|
tray-position = right
|
||||||
|
|
||||||
|
@ -130,7 +130,7 @@ ws-icon-4 = irssi;
|
||||||
ws-icon-default =
|
ws-icon-default =
|
||||||
|
|
||||||
label-dimmed-underline = ${root.background}
|
label-dimmed-underline = ${root.background}
|
||||||
|
label-separator = |
|
||||||
label-focused = %icon% %name%
|
label-focused = %icon% %name%
|
||||||
label-focused-foreground = #f3f3f3
|
label-focused-foreground = #f3f3f3
|
||||||
;label-focused-underline = #${colors.accent}
|
;label-focused-underline = #${colors.accent}
|
||||||
|
|
|
@ -11,7 +11,7 @@ brightness-night=0.8
|
||||||
|
|
||||||
; Do not change Gamma correction at day, but compensate luminance loss at night
|
; Do not change Gamma correction at day, but compensate luminance loss at night
|
||||||
gamma-day=1.0
|
gamma-day=1.0
|
||||||
gamma-night=0.8
|
gamma-night=1.0
|
||||||
|
|
||||||
; /sys/class/backlight is empty :( And DDC/CI is not implemented by my monitors, so software adjustement... Less dynamic...
|
; /sys/class/backlight is empty :( And DDC/CI is not implemented by my monitors, so software adjustement... Less dynamic...
|
||||||
adjustment-method=randr
|
adjustment-method=randr
|
||||||
|
|
|
@ -7859,6 +7859,7 @@ if rofi.returncode == 1:
|
||||||
else:
|
else:
|
||||||
for line in stdout.splitlines():
|
for line in stdout.splitlines():
|
||||||
emoji = line.split()[0]
|
emoji = line.split()[0]
|
||||||
|
print(emoji.decode('utf-8'))
|
||||||
if rofi.returncode == 0:
|
if rofi.returncode == 0:
|
||||||
Popen(
|
Popen(
|
||||||
args=[
|
args=[
|
||||||
|
|
3
.zshrc
3
.zshrc
|
@ -61,6 +61,7 @@ plugins=(
|
||||||
docker
|
docker
|
||||||
rand-quote
|
rand-quote
|
||||||
taskwarrior
|
taskwarrior
|
||||||
|
systemd
|
||||||
)
|
)
|
||||||
|
|
||||||
source $ZSH/oh-my-zsh.sh
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
@ -86,7 +87,7 @@ fi
|
||||||
# export SSH_KEY_PATH="~/.ssh/rsa_id"
|
# export SSH_KEY_PATH="~/.ssh/rsa_id"
|
||||||
|
|
||||||
# Do not print user@hostname if user is myself
|
# Do not print user@hostname if user is myself
|
||||||
DEFAULT_USER=chosto
|
DEFAULT_USER=`whoami`
|
||||||
|
|
||||||
# Set personal aliases, overriding those provided by oh-my-zsh libs,
|
# Set personal aliases, overriding those provided by oh-my-zsh libs,
|
||||||
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
|
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
|
||||||
|
|
Loading…
Reference in New Issue