Adding lots of cool stuff to dotfiles
150
.bashrc
Normal file
@@ -0,0 +1,150 @@
|
|||||||
|
# Enable the subsequent settings only in interactive sessions
|
||||||
|
case $- in
|
||||||
|
*i*) ;;
|
||||||
|
*) return;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Path to your oh-my-bash installation.
|
||||||
|
export OSH='/home/antoine/.oh-my-bash'
|
||||||
|
|
||||||
|
# Set name of the theme to load. Optionally, if you set this to "random"
|
||||||
|
# it'll load a random theme each time that oh-my-bash is loaded.
|
||||||
|
OSH_THEME="duru"
|
||||||
|
|
||||||
|
# Uncomment the following line to use case-sensitive completion.
|
||||||
|
# CASE_SENSITIVE="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to use hyphen-insensitive completion. Case
|
||||||
|
# sensitive completion must be off. _ and - will be interchangeable.
|
||||||
|
# HYPHEN_INSENSITIVE="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to disable bi-weekly auto-update checks.
|
||||||
|
# DISABLE_AUTO_UPDATE="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to change how often to auto-update (in days).
|
||||||
|
# export UPDATE_OSH_DAYS=13
|
||||||
|
|
||||||
|
# Uncomment the following line to disable colors in ls.
|
||||||
|
# DISABLE_LS_COLORS="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to disable auto-setting terminal title.
|
||||||
|
# DISABLE_AUTO_TITLE="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to enable command auto-correction.
|
||||||
|
# ENABLE_CORRECTION="true"
|
||||||
|
|
||||||
|
# Uncomment the following line to display red dots whilst waiting for completion.
|
||||||
|
# COMPLETION_WAITING_DOTS="true"
|
||||||
|
|
||||||
|
# Uncomment the following line if you want to disable marking untracked files
|
||||||
|
# under VCS as dirty. This makes repository status check for large repositories
|
||||||
|
# much, much faster.
|
||||||
|
# DISABLE_UNTRACKED_FILES_DIRTY="true"
|
||||||
|
|
||||||
|
# Uncomment the following line if you want to change the command execution time
|
||||||
|
# stamp shown in the history command output. One of the following values can
|
||||||
|
# be used to specify the timestamp format.
|
||||||
|
# * 'mm/dd/yyyy' # mm/dd/yyyy + time
|
||||||
|
# * 'dd.mm.yyyy' # dd.mm.yyyy + time
|
||||||
|
# * 'yyyy-mm-dd' # yyyy-mm-dd + time
|
||||||
|
# * '[mm/dd/yyyy]' # [mm/dd/yyyy] + [time] with colors
|
||||||
|
# * '[dd.mm.yyyy]' # [dd.mm.yyyy] + [time] with colors
|
||||||
|
# * '[yyyy-mm-dd]' # [yyyy-mm-dd] + [time] with colors
|
||||||
|
# If not set, the default value is 'yyyy-mm-dd'.
|
||||||
|
# HIST_STAMPS='yyyy-mm-dd'
|
||||||
|
|
||||||
|
# Uncomment the following line if you do not want OMB to overwrite the existing
|
||||||
|
# aliases by the default OMB aliases defined in lib/*.sh
|
||||||
|
# OMB_DEFAULT_ALIASES="check"
|
||||||
|
|
||||||
|
# Would you like to use another custom folder than $OSH/custom?
|
||||||
|
# OSH_CUSTOM=/path/to/new-custom-folder
|
||||||
|
|
||||||
|
# To disable the uses of "sudo" by oh-my-bash, please set "false" to
|
||||||
|
# this variable. The default behavior for the empty value is "true".
|
||||||
|
OMB_USE_SUDO=false
|
||||||
|
|
||||||
|
# Which completions would you like to load? (completions can be found in ~/.oh-my-bash/completions/*)
|
||||||
|
# Custom completions may be added to ~/.oh-my-bash/custom/completions/
|
||||||
|
# Example format: completions=(ssh git bundler gem pip pip3)
|
||||||
|
# Add wisely, as too many completions slow down shell startup.
|
||||||
|
#completions=(
|
||||||
|
# git
|
||||||
|
# composer
|
||||||
|
# ssh
|
||||||
|
#)
|
||||||
|
|
||||||
|
# Which aliases would you like to load? (aliases can be found in ~/.oh-my-bash/aliases/*)
|
||||||
|
# Custom aliases may be added to ~/.oh-my-bash/custom/aliases/
|
||||||
|
# Example format: aliases=(vagrant composer git-avh)
|
||||||
|
# Add wisely, as too many aliases slow down shell startup.
|
||||||
|
aliases=(
|
||||||
|
general
|
||||||
|
)
|
||||||
|
|
||||||
|
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-bash/plugins/*)
|
||||||
|
# Custom plugins may be added to ~/.oh-my-bash/custom/plugins/
|
||||||
|
# Example format: plugins=(rails git textmate ruby lighthouse)
|
||||||
|
# Add wisely, as too many plugins slow down shell startup.
|
||||||
|
plugins=(
|
||||||
|
git
|
||||||
|
bashmarks
|
||||||
|
)
|
||||||
|
|
||||||
|
# Which plugins would you like to conditionally load? (plugins can be found in ~/.oh-my-bash/plugins/*)
|
||||||
|
# Custom plugins may be added to ~/.oh-my-bash/custom/plugins/
|
||||||
|
# Example format:
|
||||||
|
# if [ "$DISPLAY" ] || [ "$SSH" ]; then
|
||||||
|
# plugins+=(tmux-autoattach)
|
||||||
|
# fi
|
||||||
|
|
||||||
|
source "$OSH"/oh-my-bash.sh
|
||||||
|
|
||||||
|
# User configuration
|
||||||
|
# export MANPATH="/usr/local/man:$MANPATH"
|
||||||
|
|
||||||
|
# You may need to manually set your language environment
|
||||||
|
# export LANG=en_US.UTF-8
|
||||||
|
|
||||||
|
# Preferred editor for local and remote sessions
|
||||||
|
# if [[ -n $SSH_CONNECTION ]]; then
|
||||||
|
# export EDITOR='vim'
|
||||||
|
# else
|
||||||
|
# export EDITOR='nvim'
|
||||||
|
# fi
|
||||||
|
|
||||||
|
# Compilation flags
|
||||||
|
# export ARCHFLAGS="-arch x86_64"
|
||||||
|
|
||||||
|
# ssh
|
||||||
|
# export SSH_KEY_PATH="~/.ssh/rsa_id"
|
||||||
|
|
||||||
|
# Set personal aliases, overriding those provided by oh-my-bash libs,
|
||||||
|
# plugins, and themes. Aliases can be placed here, though oh-my-bash
|
||||||
|
# users are encouraged to define aliases within the OSH_CUSTOM folder.
|
||||||
|
# For a full list of active aliases, run `alias`.
|
||||||
|
#
|
||||||
|
# Example aliases
|
||||||
|
# alias bashconfig="mate ~/.bashrc"
|
||||||
|
# alias ohmybash="mate ~/.oh-my-bash"
|
||||||
|
# alias dpm="cd /home/antoine/Partage/McGill/ECSE211/FinalProject"
|
||||||
|
# alias ecse210="cd ~/Partage/McGill/ECSE210"
|
||||||
|
# alias ecse223="cd ~/Partage/McGill/ECSE223"
|
||||||
|
# alias ecse251="cd ~/Partage/McGill/ECSE251"
|
||||||
|
# alias mime262="cd ~/Partage/McGill/MIME262"
|
||||||
|
export EDITOR='nvim'
|
||||||
|
alias v="nvim"
|
||||||
|
alias sure='cd ~/Partage/McGill/SURE'
|
||||||
|
alias project='cd ~/Partage/Projects/'
|
||||||
|
alias pingg='ping google.com -c 5'
|
||||||
|
alias motivate='motivate | cowsay'
|
||||||
|
export PATH=$PATH:/home/antoine/.spicetify
|
||||||
|
alias ieee='cd /home/antoine/Partage/McGill/ECSESS-IEEE/IEEE/IEEE-McGill-Student-Branch.github.io'
|
||||||
|
alias coding='cd /home/antoine/Partage/Coding'
|
||||||
|
alias gotop="gotop -l kitchensink -c monokai --nvidia"
|
||||||
|
alias arcli="arduino-cli"
|
||||||
|
|
||||||
|
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
|
||||||
|
alias mcgillvpn='/opt/cisco/anyconnect/bin/vpnui &'
|
||||||
|
alias mcgillvpn='/opt/cisco/anyconnect/bin/vpnui &'
|
||||||
|
alias mcgillvpn='/opt/cisco/anyconnect/bin/vpnui &'
|
||||||
24
.config/autorandr/diagonal/config
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
output HDMI-1
|
||||||
|
crtc 0
|
||||||
|
filter bilinear
|
||||||
|
mode 1920x1080
|
||||||
|
pos 0x0
|
||||||
|
primary
|
||||||
|
rate 60.00
|
||||||
|
transform 0.871567,0.490250,0.000000,-0.490250,0.871567,941.000000,0.000000,0.000000,1.000000
|
||||||
|
x-prop-aspect_ratio Automatic
|
||||||
|
x-prop-audio auto
|
||||||
|
x-prop-broadcast_rgb Automatic
|
||||||
|
x-prop-colorspace Default
|
||||||
|
x-prop-max_bpc 12
|
||||||
|
x-prop-non_desktop 0
|
||||||
|
output eDP-1
|
||||||
|
crtc 1
|
||||||
|
mode 1920x1080
|
||||||
|
pos 2203x816
|
||||||
|
rate 60.01
|
||||||
|
x-prop-broadcast_rgb Automatic
|
||||||
|
x-prop-colorspace Default
|
||||||
|
x-prop-max_bpc 12
|
||||||
|
x-prop-non_desktop 0
|
||||||
|
x-prop-scaling_mode Full aspect
|
||||||
2
.config/autorandr/diagonal/setup
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
HDMI-1 00ffffffffffff0010acc8a1423334311c20010380351e78ea5625ab534f9d25105054a54b00714f8180a9c0d1c081c081cf01010101023a801871382d40582c45000f282100001e000000ff003339334c4c51330a2020202020000000fc0044454c4c20503234323248450a000000fd00384c1e5311000a20202020202001cb020315b14a900504030201141f121365030c001000023a801871382d40582c45000f282100001e011d8018711c1620582c25000f282100009e011d007251d01e206e2855000f282100001e8c0ad08a20e02d10103e96000f2821000018000000000000000000000000000000000000000000000000000000000000000000005e
|
||||||
|
eDP-1 00ffffffffffff000dae0d15000000002a1c0104952213780328659759548e271e505400000001010101010101010101010101010101b43b804a713834405036680058c11000001acd27804a713834405036680058c11000001a00000000000000000000000000000000000000000002000c3dff0d3c7d1212267d0000000057
|
||||||
26
.config/autorandr/home_right_withbox/config
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
output eDP-1
|
||||||
|
crtc 0
|
||||||
|
filter bilinear
|
||||||
|
mode 1920x1080
|
||||||
|
pos 1496x0
|
||||||
|
primary
|
||||||
|
rate 60.01
|
||||||
|
transform 0.998993,0.000000,0.000000,0.000000,0.998993,0.000000,0.000000,0.000000,1.000000
|
||||||
|
x-prop-broadcast_rgb Automatic
|
||||||
|
x-prop-colorspace Default
|
||||||
|
x-prop-max_bpc 12
|
||||||
|
x-prop-non_desktop 0
|
||||||
|
x-prop-scaling_mode Full aspect
|
||||||
|
output HDMI-1
|
||||||
|
crtc 1
|
||||||
|
filter bilinear
|
||||||
|
mode 1360x768
|
||||||
|
pos 0x163
|
||||||
|
rate 60.02
|
||||||
|
transform 1.099991,0.000000,0.000000,0.000000,1.099991,0.000000,0.000000,0.000000,1.000000
|
||||||
|
x-prop-aspect_ratio Automatic
|
||||||
|
x-prop-audio auto
|
||||||
|
x-prop-broadcast_rgb Automatic
|
||||||
|
x-prop-colorspace Default
|
||||||
|
x-prop-max_bpc 12
|
||||||
|
x-prop-non_desktop 0
|
||||||
1
.config/autorandr/home_right_withbox/postswitch
Normal file
@@ -0,0 +1 @@
|
|||||||
|
exec feh --bg-scale --randomize $HOME/.wallpaper
|
||||||
2
.config/autorandr/home_right_withbox/setup
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
HDMI-1 00ffffffffffff001e6d01000101010101130103807341780acf74a3574cb02309484ca1080081c00101010101010101010101010101662150b051001b30407036007e8a4200001e011d007251d01e206e2855007e8a4200001e000000fd00393f1f3c09000a202020202020000000fc004c472054560a20202020202020011d020318f147102220058403022309070767030c001000b82d023a801871382d40582c04057e8a4200001e011d8018711c1620582c25007e8a4200009e011d007251d01e206e2855007e8a4200001e8c0ad08a20e02d10103e96007e8a42000018263680a070381f40302025007e8a4200001a000000000000000000000000002c
|
||||||
|
eDP-1 00ffffffffffff000dae0d15000000002a1c0104952213780328659759548e271e505400000001010101010101010101010101010101b43b804a713834405036680058c11000001acd27804a713834405036680058c11000001a00000000000000000000000000000000000000000002000c3dff0d3c7d1212267d0000000057
|
||||||
22
.config/autorandr/home_setup/config
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
output eDP-1
|
||||||
|
crtc 1
|
||||||
|
mode 1920x1080
|
||||||
|
pos 0x0
|
||||||
|
rate 60.01
|
||||||
|
x-prop-broadcast_rgb Automatic
|
||||||
|
x-prop-colorspace Default
|
||||||
|
x-prop-max_bpc 12
|
||||||
|
x-prop-non_desktop 0
|
||||||
|
x-prop-scaling_mode Full aspect
|
||||||
|
output HDMI-1
|
||||||
|
crtc 0
|
||||||
|
mode 1920x1080
|
||||||
|
pos 1920x0
|
||||||
|
primary
|
||||||
|
rate 165.00
|
||||||
|
x-prop-aspect_ratio Automatic
|
||||||
|
x-prop-audio auto
|
||||||
|
x-prop-broadcast_rgb Automatic
|
||||||
|
x-prop-colorspace Default
|
||||||
|
x-prop-max_bpc 12
|
||||||
|
x-prop-non_desktop 0
|
||||||
2
.config/autorandr/home_setup/setup
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
HDMI-1 00ffffffffffff001c541b270101010103210103803b2178eef1f5aa5147ac260a5054ffff80714f81c08100814081809500a9c0b300023a801871382d40582c450055502100001a000000fd0030aa36b928000a202020202020000000fc004732374620320a202020202020000000ff003233303330423030323736390a01f6020345f14b02031304298f1f10403f61230917078301000067030c001000383c67d85dc4017880036d1a0000020130aaec0000000000e30f0008e305e301e60605016161471e8380b470381e403020350055502100001a3d9680b470381e403020350055502100001acb9a80b470381e403020350055502100001e00000000a8
|
||||||
|
eDP-1 00ffffffffffff000dae0d15000000002a1c0104952213780328659759548e271e505400000001010101010101010101010101010101b43b804a713834405036680058c11000001acd27804a713834405036680058c11000001a00000000000000000000000000000000000000000002000c3dff0d3c7d1212267d0000000057
|
||||||
22
.config/autorandr/mirror_1920x1080/config
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
output eDP-1
|
||||||
|
crtc 0
|
||||||
|
mode 1920x1080
|
||||||
|
pos 0x0
|
||||||
|
primary
|
||||||
|
rate 60.01
|
||||||
|
x-prop-broadcast_rgb Automatic
|
||||||
|
x-prop-colorspace Default
|
||||||
|
x-prop-max_bpc 12
|
||||||
|
x-prop-non_desktop 0
|
||||||
|
x-prop-scaling_mode Full aspect
|
||||||
|
output HDMI-1
|
||||||
|
crtc 1
|
||||||
|
mode 1920x1080
|
||||||
|
pos 0x0
|
||||||
|
rate 60.00
|
||||||
|
x-prop-aspect_ratio Automatic
|
||||||
|
x-prop-audio auto
|
||||||
|
x-prop-broadcast_rgb Automatic
|
||||||
|
x-prop-colorspace Default
|
||||||
|
x-prop-max_bpc 12
|
||||||
|
x-prop-non_desktop 0
|
||||||
2
.config/autorandr/mirror_1920x1080/setup
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
HDMI-1 00ffffffffffff0010acc8a1425636321c20010380351e78ea5625ab534f9d25105054a54b00714f8180a9c0d1c081c081cf01010101023a801871382d40582c45000f282100001e000000ff003539364d4c51330a2020202020000000fc0044454c4c20503234323248450a000000fd00384c1e5311000a202020202020019f020315b14a900504030201141f121365030c001000023a801871382d40582c45000f282100001e011d8018711c1620582c25000f282100009e011d007251d01e206e2855000f282100001e8c0ad08a20e02d10103e96000f2821000018000000000000000000000000000000000000000000000000000000000000000000005e
|
||||||
|
eDP-1 00ffffffffffff000dae0d15000000002a1c0104952213780328659759548e271e505400000001010101010101010101010101010101b43b804a713834405036680058c11000001acd27804a713834405036680058c11000001a00000000000000000000000000000000000000000002000c3dff0d3c7d1212267d0000000057
|
||||||
22
.config/autorandr/mirror_common_room/config
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
output eDP-1
|
||||||
|
crtc 0
|
||||||
|
mode 1920x1080
|
||||||
|
pos 0x0
|
||||||
|
primary
|
||||||
|
rate 60.01
|
||||||
|
x-prop-broadcast_rgb Automatic
|
||||||
|
x-prop-colorspace Default
|
||||||
|
x-prop-max_bpc 12
|
||||||
|
x-prop-non_desktop 0
|
||||||
|
x-prop-scaling_mode Full aspect
|
||||||
|
output HDMI-1
|
||||||
|
crtc 1
|
||||||
|
mode 1920x1080
|
||||||
|
pos 0x0
|
||||||
|
rate 60.00
|
||||||
|
x-prop-aspect_ratio Automatic
|
||||||
|
x-prop-audio auto
|
||||||
|
x-prop-broadcast_rgb Automatic
|
||||||
|
x-prop-colorspace Default
|
||||||
|
x-prop-max_bpc 12
|
||||||
|
x-prop-non_desktop 0
|
||||||
2
.config/autorandr/mirror_common_room/setup
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
HDMI-1 00ffffffffffff004ca306a7010101011715010380a05a780ade50a3544c99260f5054a10800814081c0950081809040b300a9400101283c80a070b023403020360040846300001a9e20009051201f304880360040846300001c000000fd0017550f5c11000a202020202020000000fc004550534f4e20504a0a202020200116020328f651901f202205140413030212110706161501230907078301000066030c00200080e200fd023a801871382d40582c450040846300001e011d801871382d40582c450040846300001e662156aa51001e30468f330040846300001e302a40c8608464301850130040846300001e00000000000000000000000000000079
|
||||||
|
eDP-1 00ffffffffffff000dae0d15000000002a1c0104952213780328659759548e271e505400000001010101010101010101010101010101b43b804a713834405036680058c11000001acd27804a713834405036680058c11000001a00000000000000000000000000000000000000000002000c3dff0d3c7d1212267d0000000057
|
||||||
13
.config/autorandr/no-external/config
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
output HDMI-1
|
||||||
|
off
|
||||||
|
output eDP-1
|
||||||
|
crtc 0
|
||||||
|
mode 1920x1080
|
||||||
|
pos 0x0
|
||||||
|
primary
|
||||||
|
rate 60.01
|
||||||
|
x-prop-broadcast_rgb Automatic
|
||||||
|
x-prop-colorspace Default
|
||||||
|
x-prop-max_bpc 12
|
||||||
|
x-prop-non_desktop 0
|
||||||
|
x-prop-scaling_mode Full aspect
|
||||||
1
.config/autorandr/no-external/postswitch
Normal file
@@ -0,0 +1 @@
|
|||||||
|
exec feh --bg-scale --randomize $HOME/.wallpaper
|
||||||
1
.config/autorandr/no-external/setup
Normal file
@@ -0,0 +1 @@
|
|||||||
|
eDP-1 00ffffffffffff000dae0d15000000002a1c0104952213780328659759548e271e505400000001010101010101010101010101010101b43b804a713834405036680058c11000001acd27804a713834405036680058c11000001a00000000000000000000000000000000000000000002000c3dff0d3c7d1212267d0000000057
|
||||||
5
.config/autorandr/postswitch
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
feh --bg-fill --randomize $HOME/.wallpaper
|
||||||
|
notify-send "New monitor detected!"
|
||||||
|
# xset s off -dpms
|
||||||
22
.config/autorandr/profile_1/config
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
output HDMI-1
|
||||||
|
crtc 1
|
||||||
|
mode 1920x1080
|
||||||
|
pos 0x0
|
||||||
|
rate 60.00
|
||||||
|
x-prop-aspect_ratio Automatic
|
||||||
|
x-prop-audio auto
|
||||||
|
x-prop-broadcast_rgb Automatic
|
||||||
|
x-prop-colorspace Default
|
||||||
|
x-prop-max_bpc 12
|
||||||
|
x-prop-non_desktop 0
|
||||||
|
output eDP-1
|
||||||
|
crtc 0
|
||||||
|
mode 1920x1080
|
||||||
|
pos 1920x671
|
||||||
|
primary
|
||||||
|
rate 60.01
|
||||||
|
x-prop-broadcast_rgb Automatic
|
||||||
|
x-prop-colorspace Default
|
||||||
|
x-prop-max_bpc 12
|
||||||
|
x-prop-non_desktop 0
|
||||||
|
x-prop-scaling_mode Full aspect
|
||||||
1
.config/autorandr/profile_1/postswitch
Normal file
@@ -0,0 +1 @@
|
|||||||
|
exec feh --bg-scale --randomize $HOME/.wallpaper
|
||||||
2
.config/autorandr/profile_1/setup
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
HDMI-1 00ffffffffffff0010acc8a1425a44311c20010380351e78ea5625ab534f9d25105054a54b00714f8180a9c0d1c081c081cf01010101023a801871382d40582c45000f282100001e000000ff0037444d4c4c51330a2020202020000000fc0044454c4c20503234323248450a000000fd00384c1e5311000a202020202020016b020315b14a900504030201141f121365030c001000023a801871382d40582c45000f282100001e011d8018711c1620582c25000f282100009e011d007251d01e206e2855000f282100001e8c0ad08a20e02d10103e96000f2821000018000000000000000000000000000000000000000000000000000000000000000000005e
|
||||||
|
eDP-1 00ffffffffffff000dae0d15000000002a1c0104952213780328659759548e271e505400000001010101010101010101010101010101b43b804a713834405036680058c11000001acd27804a713834405036680058c11000001a00000000000000000000000000000000000000000002000c3dff0d3c7d1212267d0000000057
|
||||||
22
.config/autorandr/trottier_up/config
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
output HDMI-1
|
||||||
|
crtc 1
|
||||||
|
mode 1920x1080
|
||||||
|
pos 0x0
|
||||||
|
rate 60.00
|
||||||
|
x-prop-aspect_ratio Automatic
|
||||||
|
x-prop-audio auto
|
||||||
|
x-prop-broadcast_rgb Automatic
|
||||||
|
x-prop-colorspace Default
|
||||||
|
x-prop-max_bpc 12
|
||||||
|
x-prop-non_desktop 0
|
||||||
|
output eDP-1
|
||||||
|
crtc 0
|
||||||
|
mode 1920x1080
|
||||||
|
pos 0x1080
|
||||||
|
primary
|
||||||
|
rate 60.01
|
||||||
|
x-prop-broadcast_rgb Automatic
|
||||||
|
x-prop-colorspace Default
|
||||||
|
x-prop-max_bpc 12
|
||||||
|
x-prop-non_desktop 0
|
||||||
|
x-prop-scaling_mode Full aspect
|
||||||
2
.config/autorandr/trottier_up/setup
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
HDMI-1 00ffffffffffff0010acc8a1424430311c20010380351e78ea5625ab534f9d25105054a54b00714f8180a9c0d1c081c081cf01010101023a801871382d40582c45000f282100001e000000ff004248574d4c51330a2020202020000000fc0044454c4c20503234323248450a000000fd00384c1e5311000a202020202020017b020315b14a900504030201141f121365030c001000023a801871382d40582c45000f282100001e011d8018711c1620582c25000f282100009e011d007251d01e206e2855000f282100001e8c0ad08a20e02d10103e96000f2821000018000000000000000000000000000000000000000000000000000000000000000000005e
|
||||||
|
eDP-1 00ffffffffffff000dae0d15000000002a1c0104952213780328659759548e271e505400000001010101010101010101010101010101b43b804a713834405036680058c11000001acd27804a713834405036680058c11000001a00000000000000000000000000000000000000000002000c3dff0d3c7d1212267d0000000057
|
||||||
BIN
.config/dconf/user
Normal file
387
.config/dunst/dunstrc
Normal file
@@ -0,0 +1,387 @@
|
|||||||
|
# See dunst(5) for all configuration options
|
||||||
|
|
||||||
|
[global]
|
||||||
|
### Display ###
|
||||||
|
|
||||||
|
# Which monitor should the notifications be displayed on.
|
||||||
|
monitor = 0
|
||||||
|
|
||||||
|
# Display notification on focused monitor. Possible modes are:
|
||||||
|
# mouse: follow mouse pointer
|
||||||
|
# keyboard: follow window with keyboard focus
|
||||||
|
# none: don't follow anything
|
||||||
|
#
|
||||||
|
# "keyboard" needs a window manager that exports the
|
||||||
|
# _NET_ACTIVE_WINDOW property.
|
||||||
|
# This should be the case for almost all modern window managers.
|
||||||
|
#
|
||||||
|
# If this option is set to mouse or keyboard, the monitor option
|
||||||
|
# will be ignored.
|
||||||
|
follow = mouse
|
||||||
|
|
||||||
|
### Geometry ###
|
||||||
|
|
||||||
|
# dynamic width from 0 to 300
|
||||||
|
# width = (0, 300)
|
||||||
|
# constant width of 300
|
||||||
|
width = 500
|
||||||
|
|
||||||
|
# The maximum height of a single notification, excluding the frame.
|
||||||
|
height = 240
|
||||||
|
|
||||||
|
# Position the notification in the top right corner
|
||||||
|
origin = top-center
|
||||||
|
|
||||||
|
# Offset from the origin
|
||||||
|
offset = 0x12
|
||||||
|
|
||||||
|
# Scale factor. It is auto-detected if value is 0.
|
||||||
|
scale = 0
|
||||||
|
|
||||||
|
# Maximum number of notification (0 means no limit)
|
||||||
|
notification_limit = 0
|
||||||
|
|
||||||
|
### Progress bar ###
|
||||||
|
|
||||||
|
# Turn on the progess bar. It appears when a progress hint is passed with
|
||||||
|
# for example dunstify -h int:value:12
|
||||||
|
progress_bar = true
|
||||||
|
|
||||||
|
# Set the progress bar height. This includes the frame, so make sure
|
||||||
|
# it's at least twice as big as the frame width.
|
||||||
|
progress_bar_height = 10
|
||||||
|
|
||||||
|
# Set the frame width of the progress bar
|
||||||
|
progress_bar_frame_width = 1
|
||||||
|
|
||||||
|
# Set the minimum width for the progress bar
|
||||||
|
progress_bar_min_width = 150
|
||||||
|
|
||||||
|
# Set the maximum width for the progress bar
|
||||||
|
progress_bar_max_width = 300
|
||||||
|
|
||||||
|
# Corner radius for the progress bar. 0 disables rounded corners.
|
||||||
|
progress_bar_corner_radius = 12
|
||||||
|
|
||||||
|
# Corner radius for the icon image.
|
||||||
|
icon_corner_radius = 0
|
||||||
|
|
||||||
|
# Show how many messages are currently hidden (because of
|
||||||
|
# notification_limit).
|
||||||
|
indicate_hidden = yes
|
||||||
|
|
||||||
|
# The transparency of the window. Range: [0; 100].
|
||||||
|
# This option will only work if a compositing window manager is
|
||||||
|
# present (e.g. xcompmgr, compiz, etc.). (X11 only)
|
||||||
|
transparency = 90
|
||||||
|
|
||||||
|
# Draw a line of "separator_height" pixel height between two
|
||||||
|
# notifications.
|
||||||
|
# Set to 0 to disable.
|
||||||
|
# If gap_size is greater than 0, this setting will be ignored.
|
||||||
|
separator_height = 2
|
||||||
|
|
||||||
|
# Padding between text and separator.
|
||||||
|
padding = 8
|
||||||
|
|
||||||
|
# Horizontal padding.
|
||||||
|
horizontal_padding = 8
|
||||||
|
|
||||||
|
# Padding between text and icon.
|
||||||
|
text_icon_padding = 0
|
||||||
|
|
||||||
|
# Defines width in pixels of frame around the notification window.
|
||||||
|
# Set to 0 to disable.
|
||||||
|
frame_width = 2
|
||||||
|
|
||||||
|
# Defines color of the frame around the notification window.
|
||||||
|
frame_color = "#d7c7ebaa"
|
||||||
|
|
||||||
|
# Size of gap to display between notifications - requires a compositor.
|
||||||
|
# If value is greater than 0, separator_height will be ignored and a border
|
||||||
|
# of size frame_width will be drawn around each notification instead.
|
||||||
|
# Click events on gaps do not currently propagate to applications below.
|
||||||
|
gap_size = 0
|
||||||
|
|
||||||
|
# Define a color for the separator.
|
||||||
|
# possible values are:
|
||||||
|
# * auto: dunst tries to find a color fitting to the background;
|
||||||
|
# * foreground: use the same color as the foreground;
|
||||||
|
# * frame: use the same color as the frame;
|
||||||
|
# * anything else will be interpreted as a X color.
|
||||||
|
separator_color = foreground
|
||||||
|
|
||||||
|
# Sort messages by urgency.
|
||||||
|
sort = no
|
||||||
|
|
||||||
|
# Don't remove messages, if the user is idle (no mouse or keyboard input)
|
||||||
|
# for longer than idle_threshold seconds.
|
||||||
|
# Set to 0 to disable.
|
||||||
|
# A client can set the 'transient' hint to bypass this. See the rules
|
||||||
|
# section for how to disable this if necessary
|
||||||
|
# idle_threshold = 120
|
||||||
|
|
||||||
|
### Text ###
|
||||||
|
|
||||||
|
font = Fira Code Nerd 12
|
||||||
|
|
||||||
|
# The spacing between lines. If the height is smaller than the
|
||||||
|
# font height, it will get raised to the font height.
|
||||||
|
line_height = 0
|
||||||
|
|
||||||
|
# Possible values are:
|
||||||
|
# full: Allow a small subset of html markup in notifications:
|
||||||
|
# <b>bold</b>
|
||||||
|
# <i>italic</i>
|
||||||
|
# <s>strikethrough</s>
|
||||||
|
# <u>underline</u>
|
||||||
|
#
|
||||||
|
# For a complete reference see
|
||||||
|
# <https://docs.gtk.org/Pango/pango_markup.html>.
|
||||||
|
#
|
||||||
|
# strip: This setting is provided for compatibility with some broken
|
||||||
|
# clients that send markup even though it's not enabled on the
|
||||||
|
# server. Dunst will try to strip the markup but the parsing is
|
||||||
|
# simplistic so using this option outside of matching rules for
|
||||||
|
# specific applications *IS GREATLY DISCOURAGED*.
|
||||||
|
#
|
||||||
|
# no: Disable markup parsing, incoming notifications will be treated as
|
||||||
|
# plain text. Dunst will not advertise that it has the body-markup
|
||||||
|
# capability if this is set as a global setting.
|
||||||
|
#
|
||||||
|
# It's important to note that markup inside the format option will be parsed
|
||||||
|
# regardless of what this is set to.
|
||||||
|
markup = full
|
||||||
|
|
||||||
|
# The format of the message. Possible variables are:
|
||||||
|
# %a appname
|
||||||
|
# %s summary
|
||||||
|
# %b body
|
||||||
|
# %i iconname (including its path)
|
||||||
|
# %I iconname (without its path)
|
||||||
|
# %p progress value if set ([ 0%] to [100%]) or nothing
|
||||||
|
# %n progress value if set without any extra characters
|
||||||
|
# %% Literal %
|
||||||
|
# Markup is allowed
|
||||||
|
format = "<b>%s</b>%p"
|
||||||
|
|
||||||
|
# Alignment of message text.
|
||||||
|
# Possible values are "left", "center" and "right".
|
||||||
|
alignment = left
|
||||||
|
|
||||||
|
# Vertical alignment of message text and icon.
|
||||||
|
# Possible values are "top", "center" and "bottom".
|
||||||
|
vertical_alignment = center
|
||||||
|
|
||||||
|
# Show age of message if message is older than show_age_threshold
|
||||||
|
# seconds.
|
||||||
|
# Set to -1 to disable.
|
||||||
|
show_age_threshold = 60
|
||||||
|
|
||||||
|
# Specify where to make an ellipsis in long lines.
|
||||||
|
# Possible values are "start", "middle" and "end".
|
||||||
|
ellipsize = middle
|
||||||
|
|
||||||
|
# Ignore newlines '\n' in notifications.
|
||||||
|
ignore_newline = no
|
||||||
|
|
||||||
|
# Stack together notifications with the same content
|
||||||
|
stack_duplicates = true
|
||||||
|
|
||||||
|
# Hide the count of stacked notifications with the same content
|
||||||
|
hide_duplicate_count = false
|
||||||
|
|
||||||
|
# Display indicators for URLs (U) and actions (A).
|
||||||
|
show_indicators = yes
|
||||||
|
|
||||||
|
### Icons ###
|
||||||
|
|
||||||
|
# Recursive icon lookup. You can set a single theme, instead of having to
|
||||||
|
# define all lookup paths.
|
||||||
|
enable_recursive_icon_lookup = true
|
||||||
|
|
||||||
|
# Set icon theme (only used for recursive icon lookup)
|
||||||
|
icon_theme = Adwaita
|
||||||
|
# You can also set multiple icon themes, with the leftmost one being used first.
|
||||||
|
# icon_theme = "Adwaita, breeze"
|
||||||
|
|
||||||
|
# Align icons left/right/top/off
|
||||||
|
icon_position = left
|
||||||
|
|
||||||
|
# Scale small icons up to this size, set to 0 to disable. Helpful
|
||||||
|
# for e.g. small files or high-dpi screens. In case of conflict,
|
||||||
|
# max_icon_size takes precedence over this.
|
||||||
|
min_icon_size = 32
|
||||||
|
|
||||||
|
# Scale larger icons down to this size, set to 0 to disable
|
||||||
|
max_icon_size = 128
|
||||||
|
|
||||||
|
# Paths to default icons (only neccesary when not using recursive icon lookup)
|
||||||
|
icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/
|
||||||
|
|
||||||
|
### History ###
|
||||||
|
|
||||||
|
# Should a notification popped up from history be sticky or timeout
|
||||||
|
# as if it would normally do.
|
||||||
|
sticky_history = no
|
||||||
|
|
||||||
|
# Maximum amount of notifications kept in history
|
||||||
|
history_length = 20
|
||||||
|
|
||||||
|
### Misc/Advanced ###
|
||||||
|
|
||||||
|
# dmenu path.
|
||||||
|
dmenu = /usr/bin/dmenu -p dunst:
|
||||||
|
|
||||||
|
# Browser for opening urls in context menu.
|
||||||
|
browser = /usr/bin/xdg-open
|
||||||
|
|
||||||
|
# Always run rule-defined scripts, even if the notification is suppressed
|
||||||
|
always_run_script = true
|
||||||
|
|
||||||
|
# Define the title of the windows spawned by dunst
|
||||||
|
title = Dunst
|
||||||
|
|
||||||
|
# Define the class of the windows spawned by dunst
|
||||||
|
class = Dunst
|
||||||
|
|
||||||
|
# Define the corner radius of the notification window
|
||||||
|
# in pixel size. If the radius is 0, you have no rounded
|
||||||
|
# corners.
|
||||||
|
# The radius will be automatically lowered if it exceeds half of the
|
||||||
|
# notification height to avoid clipping text and/or icons.
|
||||||
|
corner_radius = 12
|
||||||
|
|
||||||
|
# Ignore the dbus closeNotification message.
|
||||||
|
# Useful to enforce the timeout set by dunst configuration. Without this
|
||||||
|
# parameter, an application may close the notification sent before the
|
||||||
|
# user defined timeout.
|
||||||
|
ignore_dbusclose = true
|
||||||
|
|
||||||
|
### Wayland ###
|
||||||
|
# These settings are Wayland-specific. They have no effect when using X11
|
||||||
|
|
||||||
|
# Uncomment this if you want to let notications appear under fullscreen
|
||||||
|
# applications (default: overlay)
|
||||||
|
# layer = top
|
||||||
|
|
||||||
|
# Set this to true to use X11 output on Wayland.
|
||||||
|
force_xwayland = false
|
||||||
|
|
||||||
|
### Legacy
|
||||||
|
|
||||||
|
# Use the Xinerama extension instead of RandR for multi-monitor support.
|
||||||
|
# This setting is provided for compatibility with older nVidia drivers that
|
||||||
|
# do not support RandR and using it on systems that support RandR is highly
|
||||||
|
# discouraged.
|
||||||
|
#
|
||||||
|
# By enabling this setting dunst will not be able to detect when a monitor
|
||||||
|
# is connected or disconnected which might break follow mode if the screen
|
||||||
|
# layout changes.
|
||||||
|
force_xinerama = false
|
||||||
|
|
||||||
|
### mouse
|
||||||
|
|
||||||
|
# Defines list of actions for each mouse event
|
||||||
|
# Possible values are:
|
||||||
|
# * none: Don't do anything.
|
||||||
|
# * do_action: Invoke the action determined by the action_name rule. If there is no
|
||||||
|
# such action, open the context menu.
|
||||||
|
# * open_url: If the notification has exactly one url, open it. If there are multiple
|
||||||
|
# ones, open the context menu.
|
||||||
|
# * close_current: Close current notification.
|
||||||
|
# * close_all: Close all notifications.
|
||||||
|
# * context: Open context menu for the notification.
|
||||||
|
# * context_all: Open context menu for all notifications.
|
||||||
|
# These values can be strung together for each mouse event, and
|
||||||
|
# will be executed in sequence.
|
||||||
|
mouse_left_click = close_current
|
||||||
|
mouse_middle_click = do_action, close_current
|
||||||
|
mouse_right_click = close_all
|
||||||
|
|
||||||
|
# Experimental features that may or may not work correctly. Do not expect them
|
||||||
|
# to have a consistent behaviour across releases.
|
||||||
|
[experimental]
|
||||||
|
# Calculate the dpi to use on a per-monitor basis.
|
||||||
|
# If this setting is enabled the Xft.dpi value will be ignored and instead
|
||||||
|
# dunst will attempt to calculate an appropriate dpi value for each monitor
|
||||||
|
# using the resolution and physical size. This might be useful in setups
|
||||||
|
# where there are multiple screens with very different dpi values.
|
||||||
|
per_monitor_dpi = false
|
||||||
|
|
||||||
|
|
||||||
|
[urgency_low]
|
||||||
|
# IMPORTANT: colors have to be defined in quotation marks.
|
||||||
|
# Otherwise the "#" and following would be interpreted as a comment.
|
||||||
|
background = "#222222"
|
||||||
|
foreground = "#888888"
|
||||||
|
timeout = 1
|
||||||
|
# Icon for notifications with low urgency, uncomment to enable
|
||||||
|
#default_icon = /path/to/icon
|
||||||
|
|
||||||
|
[urgency_normal]
|
||||||
|
background = "#3b2e94ee"
|
||||||
|
foreground = "#ffffff"
|
||||||
|
timeout = 1
|
||||||
|
# Icon for notifications with normal urgency, uncomment to enable
|
||||||
|
#default_icon = /path/to/icon
|
||||||
|
|
||||||
|
[urgency_critical]
|
||||||
|
background = "#900000"
|
||||||
|
foreground = "#ffffff"
|
||||||
|
frame_color = "#ff0000"
|
||||||
|
timeout = 0
|
||||||
|
# Icon for notifications with critical urgency, uncomment to enable
|
||||||
|
#default_icon = /path/to/icon
|
||||||
|
|
||||||
|
# Every section that isn't one of the above is interpreted as a rules to
|
||||||
|
# override settings for certain messages.
|
||||||
|
#
|
||||||
|
# Messages can be matched by
|
||||||
|
# appname (discouraged, see desktop_entry)
|
||||||
|
# body
|
||||||
|
# category
|
||||||
|
# desktop_entry
|
||||||
|
# icon
|
||||||
|
# match_transient
|
||||||
|
# msg_urgency
|
||||||
|
# stack_tag
|
||||||
|
# summary
|
||||||
|
#
|
||||||
|
# and you can override the
|
||||||
|
# background
|
||||||
|
# foreground
|
||||||
|
# format
|
||||||
|
# frame_color
|
||||||
|
# fullscreen
|
||||||
|
# new_icon
|
||||||
|
# set_stack_tag
|
||||||
|
# set_transient
|
||||||
|
# set_category
|
||||||
|
# timeout
|
||||||
|
# urgency
|
||||||
|
# icon_position
|
||||||
|
# skip_display
|
||||||
|
# history_ignore
|
||||||
|
# action_name
|
||||||
|
# word_wrap
|
||||||
|
# ellipsize
|
||||||
|
# alignment
|
||||||
|
# hide_text
|
||||||
|
#
|
||||||
|
# Shell-like globbing will get expanded.
|
||||||
|
#
|
||||||
|
# Instead of the appname filter, it's recommended to use the desktop_entry filter.
|
||||||
|
# GLib based applications export their desktop-entry name. In comparison to the appname,
|
||||||
|
# the desktop-entry won't get localized.
|
||||||
|
#
|
||||||
|
# SCRIPTING
|
||||||
|
# You can specify a script that gets run when the rule matches by
|
||||||
|
# setting the "script" option.
|
||||||
|
# The script will be called as follows:
|
||||||
|
# script appname summary body icon urgency
|
||||||
|
# where urgency can be "LOW", "NORMAL" or "CRITICAL".
|
||||||
|
#
|
||||||
|
# NOTE: It might be helpful to run dunst -print in a terminal in order
|
||||||
|
# to find fitting options for rules.
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<svg height="14" width="14" xmlns="http://www.w3.org/2000/svg"><g style="display:inline"><path d="M388 342c-2.207 0-4 1.793-4 4s1.793 4 4 4c2.208 0 4-1.793 4-4s-1.792-4-4-4z" style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.389;marker:none" transform="translate(-381 -339)"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 689 B |
|
After Width: | Height: | Size: 165 B |
|
After Width: | Height: | Size: 268 B |
@@ -0,0 +1 @@
|
|||||||
|
<svg height="14" width="14" xmlns="http://www.w3.org/2000/svg"><g style="display:inline;opacity:1"><path style="color:#000;display:inline;fill:#bebebe;fill-opacity:1;stroke-linecap:round;-inkscape-stroke:none" d="M414.145 341.9a1.25 1.25 0 0 0-1.766.092l-5.68 6.305-2.881-2.909a1.25 1.25 0 0 0-1.766 1.77l4.743 4.768 7.442-8.262a1.25 1.25 0 0 0-.092-1.764z" transform="translate(-401 -339)"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 402 B |
|
After Width: | Height: | Size: 244 B |
|
After Width: | Height: | Size: 369 B |
@@ -0,0 +1 @@
|
|||||||
|
<svg height="14" width="14" xmlns="http://www.w3.org/2000/svg"><g style="display:inline"><path style="color:#000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="M407 367h8c1.108 0 2 .892 2 2s-.892 2-2 2h-8c-1.108 0-2-.892-2-2s.892-2 2-2z" transform="translate(-404 -362)"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 770 B |
|
After Width: | Height: | Size: 130 B |
|
After Width: | Height: | Size: 183 B |
|
After Width: | Height: | Size: 922 B |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 813 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 705 B |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 788 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 957 B |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 836 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 688 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 786 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 933 B |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 813 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 721 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 786 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 941 B |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 818 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 714 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 791 B |
|
After Width: | Height: | Size: 1.7 KiB |
BIN
.config/gtk-3.0/adw-gtk3-dark/gtk-3.0/assets/tab-border-dark.png
Normal file
|
After Width: | Height: | Size: 135 B |
|
After Width: | Height: | Size: 140 B |
|
After Width: | Height: | Size: 135 B |
|
After Width: | Height: | Size: 140 B |
|
After Width: | Height: | Size: 844 B |
|
After Width: | Height: | Size: 1.8 KiB |
BIN
.config/gtk-3.0/adw-gtk3-dark/gtk-3.0/assets/text-select-end.png
Normal file
|
After Width: | Height: | Size: 771 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 834 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 776 B |
|
After Width: | Height: | Size: 1.7 KiB |
3400
.config/gtk-3.0/adw-gtk3-dark/gtk-3.0/gtk-dark.css
Normal file
3400
.config/gtk-3.0/adw-gtk3-dark/gtk-3.0/gtk.css
Normal file
6
.config/gtk-3.0/adw-gtk3-dark/index.theme
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
[X-GNOME-Metatheme]
|
||||||
|
Name=adw-gtk3-dark
|
||||||
|
Type=X-GNOME-Metatheme
|
||||||
|
Comment=adw-gtk3-dark theme
|
||||||
|
Encoding=UTF-8
|
||||||
|
GtkTheme=adw-gtk3-dark
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<svg height="14" width="14" xmlns="http://www.w3.org/2000/svg"><g style="display:inline"><path d="M388 342c-2.207 0-4 1.793-4 4s1.793 4 4 4c2.208 0 4-1.793 4-4s-1.792-4-4-4z" style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.389;marker:none" transform="translate(-381 -339)"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 689 B |
|
After Width: | Height: | Size: 165 B |
|
After Width: | Height: | Size: 268 B |
@@ -0,0 +1 @@
|
|||||||
|
<svg height="14" width="14" xmlns="http://www.w3.org/2000/svg"><g style="display:inline;opacity:1"><path style="color:#000;display:inline;fill:#bebebe;fill-opacity:1;stroke-linecap:round;-inkscape-stroke:none" d="M414.145 341.9a1.25 1.25 0 0 0-1.766.092l-5.68 6.305-2.881-2.909a1.25 1.25 0 0 0-1.766 1.77l4.743 4.768 7.442-8.262a1.25 1.25 0 0 0-.092-1.764z" transform="translate(-401 -339)"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 402 B |
|
After Width: | Height: | Size: 244 B |
|
After Width: | Height: | Size: 369 B |
@@ -0,0 +1 @@
|
|||||||
|
<svg height="14" width="14" xmlns="http://www.w3.org/2000/svg"><g style="display:inline"><path style="color:#000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="M407 367h8c1.108 0 2 .892 2 2s-.892 2-2 2h-8c-1.108 0-2-.892-2-2s.892-2 2-2z" transform="translate(-404 -362)"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 770 B |
|
After Width: | Height: | Size: 130 B |
|
After Width: | Height: | Size: 183 B |
|
After Width: | Height: | Size: 922 B |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 813 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 705 B |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 788 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 957 B |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 836 B |
|
After Width: | Height: | Size: 1.7 KiB |