summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/redshift.conf21
-rw-r--r--config/starship.toml23
2 files changed, 0 insertions, 44 deletions
diff --git a/config/redshift.conf b/config/redshift.conf
deleted file mode 100644
index 7d76847..0000000
--- a/config/redshift.conf
+++ /dev/null
@@ -1,21 +0,0 @@
-[redshift]
-
-temp-day=5700
-temp-night=4500
-
-fade=1
-
-; Custom dawn/dusk intervals.
-dawn-time=6:00-7:45
-dusk-time=20:00-21:00
-
-gamma-day=1
-gamma-night=0.8
-
-location-provider=manual
-
-adjustment-method=randr
-
-[manual]
-lat=37.46
-lon=15.05
diff --git a/config/starship.toml b/config/starship.toml
deleted file mode 100644
index 344b069..0000000
--- a/config/starship.toml
+++ /dev/null
@@ -1,23 +0,0 @@
-add_newline = false
-
-[directory]
-truncation_length = 15
-style = "cyan"
-
-[line_break]
-disabled = true
-
-[custom.docker]
-description = "Shows the docker symbol if the current directory has Dockerfile or docker-compose.yml files"
-command = "echo 🐳"
-files = ["Dockerfile", "docker-compose.yml", "docker-compose.yaml"]
-when = """ command -v docker &> /dev/null; exit (echo $?); """
-
-[custom.ssh_keys]
-description = "SSH key count"
-when = "ssh-add -l | grep -v -q 'no identities'"
-command = "ssh-add -l | grep -v 'no identities' | wc -l"
-format = "$symbol[$output]($style) "
-shell = ["bash", "--noprofile", "--norc"]
-symbol = "🔑"
-style = "bold fg:green"