summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2018-12-09 03:56:32 -0500
committerAndrew Cady <d@jerkface.net>2018-12-09 03:58:09 -0500
commitd10f93fbbd4116f083a682dcf431b3b84d8ec6e4 (patch)
tree0920182e7d8548abce8ff857295ea69fadb46793
parentab41b2f851c79a51eb8fc22d7fd8ac60b802b964 (diff)
bashrc: debian_install_firefox()
-rw-r--r--dot/bashrc10
1 files changed, 8 insertions, 2 deletions
diff --git a/dot/bashrc b/dot/bashrc
index 64fd235..e638d9b 100644
--- a/dot/bashrc
+++ b/dot/bashrc
@@ -199,7 +199,6 @@ memoize_retval()
199 199
200 alias csi='csi -q' 200 alias csi='csi -q'
201 alias bc='bc -ql' 201 alias bc='bc -ql'
202 alias apt='sudo aptitude'
203 202
204 alias df='df -x fuse' 203 alias df='df -x fuse'
205 alias mtr='mtr --curses' 204 alias mtr='mtr --curses'
@@ -324,7 +323,14 @@ tmux_clone()
324 tmux new-session -t 0 -s 1 323 tmux new-session -t 0 -s 1
325} 324}
326 325
327wifi_AP () 326wifi_AP()
328{ 327{
329 /sbin/iw dev wlan0 info | sed -n 's/^\taddr //p' 328 /sbin/iw dev wlan0 info | sed -n 's/^\taddr //p'
330} 329}
330
331debian_install_firefox()
332{
333 which snap || sudo apt-get install snapd
334 sudo snap install firefox
335 printf '%s\n' 'To run firefox, execute the command:' ' snap run firefox'
336}